gpt4 book ai didi

python - 如何将文件夹上传到 Azure blob 存储,同时保留 Python 中的结构?

转载 作者:行者123 更新时间:2023-12-03 05:16:34 25 4
gpt4 key购买 nike

我编写了以下代码,使用 Python 将文件上传到 Blob 存储:

blob_service_client = ContainerClient(account_url="https://{}.blob.core.windows.net".format(ACCOUNT_NAME),
credential=ACCOUNT_KEY,
container_name=CONTAINER_NAME)

blob_service_client.upload_blob("my_file.txt", open("my_file.txt", "rb"))

这工作正常。我想知道如何上传包含所有文件和子文件夹的整个文件夹,同时保持本地文件夹结构完整?

最佳答案

从我这边复制后,我可以使用os模块来实现您的要求。下面是对我有用的完整代码。

dir_path = r'<YOUR_LOCAL_FOLDER>'

for path, subdirs, files in os.walk(dir_path):
for name in files:
fullPath=os.path.join(path, name)
print("FullPath : "+fullPath)
file=fullPath.replace(dir_path,'')
fileName=file[1:len(file)];
print("File Name :"+fileName)

# Create a blob client using the local file name as the name for the blob
blob_service_client = ContainerClient(account_url=ACCOUNT_URL,
credential=ACCOUNT_KEY,
container_name=CONTAINER_NAME)

print("\nUploading to Azure Storage as blob:\n\t" + fileName)
blob_service_client.upload_blob(fileName, open(fullPath, "rb"))

下面是我本地的文件夹结构。

├───g.txt
├───h.txt
├───Folder1
├───z.txt
├───y.txt
├───Folder2
├───a.txt
├───b.txt
├───SubFolder1
├───c.txt
├───d.txt

结果:

enter image description here

关于python - 如何将文件夹上传到 Azure blob 存储,同时保留 Python 中的结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74788118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com