如何使用az存储fs目录下载Azure存储中目录的内容?

brqmpdu1  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(152)

目前,我使用的是az storage blob directory download,但每次运行它时,我都会得到:This command is implicitly deprecated because command group 'storage blob directory' is deprecated and will be removed in a future release. Use 'az storage fs directory' instead.
我检查了文档,似乎找不到--file-system的值应该是什么。有人能分享一个从Azure存储将blob内的容器内的目录(文件夹)的内容下载到Windows计算机的示例吗?

0sgqnhkj

0sgqnhkj1#

--file-system是容器名称

az storage fs directory download -f myfilesystem --account-name mystorageaccount -s SourceDirectoryPath -d "<local-path>" --recursive

以上将下载整个目录

t0ybt7op

t0ybt7op2#

执行以下命令:
第一个月
在运行上面的命令之前,请确认您的存储帐户已经启用了分级命名空间,否则存储帐户的文件级别将平在您这边。
它在我这边起作用:
这是我这边的结构:

我可以将特定目录下载到当前目录:

您可以参考以下官方文件:
az存储文件系统目录示例

相关问题