我有一个 blob,我在其中下载所有内容,如下所示:
azcopy --source https://myaccount.blob.core.windows.net/mycontainer --destination ./ --dest-key <key> --recursive
现在我只想从这个容器下载特定的文件。从文档--include "a*"
中将仅上传带有前缀的文件a
。
如何使用通配符或模式下载 .txt
文件?
我试过了:
azcopy --source https://myaccount.blob.core.windows.net/mycontainer --destination ./ --dest-key <key> --recursive -include "*.txt"
或者
--include '*.txt'
--include *.txt
似乎它仅适用于上传文件。