如何将整个目录上传到S3?

时间:2011-05-10 05:07:32

标签: python file amazon-web-services amazon-s3

我希望我的目录及其所有子目录和文件直接进入S3。克隆它。

有一个简单的脚本/程序可以做到吗?

我在Ubuntu linux上。

1 个答案:

答案 0 :(得分:6)

  1. 安装S3(http://s3tools.org/download)

  2. 配置它: s3cmd --configure

  3. 创建一个存储桶:s3cmd mb s3://my-bucket(或者,您可以通过S3Fox之类的工具执行此操作)

  4. 将您的本地目录与S3同步:s3cmd sync /path/to/local/dir/ s3://my-bucket