小编sim*_*ong的帖子

如何将文件夹从 AzureML 笔记本文件夹下载到本地或 Blob 存储?

当我使用 AzureML jupyter 时,我使用 (./folder_name) 将文件保存到同一目录。现在如何下载到本地计算机或 Blob 存储?

该文件夹中有很多文件和子目录,这是我在网上抓取的。所以一一保存不太现实。

file_path = "./"

for i in target_key_word:
    tem_str = i.replace(' ', '+')
    dir_name = file_path + i
    if not os.path.exists(dir_name):
        os.mkdir(dir_name)
    else:    
        print("Directory " , dir_name ,  " already exists")
Run Code Online (Sandbox Code Playgroud)

python azure azure-storage azure-blob-storage azure-machine-learning-service

4
推荐指数
1
解决办法
9012
查看次数