如何使用python将文件夹和子文件夹上载到s3

时间:2018-11-28 12:01:31

标签: python

#!/usr/bin/env python
import boto3
import os

def uploadDirectory(image,testing-reports-image):
    for root,dirs,files in os.walk(image):
        for file in files:
            s3C.upload_file(os.path.join(root,file), testing-reports-image, file)

******这里的测试报告图像是我的s3存储桶名称,图像是文件夹** 当我运行此脚本时,出现错误定义uploadDirectory(image,testing-reports-image):                                      ^ 语法错误:语法无效** 我该如何解决**

1 个答案:

答案 0 :(得分:0)

您不能在名称中使用破折号-testing-reports-image参数有多个。