将目录中的所有内容上传到存储账户容器。

huangapple go评论54阅读模式
英文:

Upload all the contents of a directory to the storage account container

问题

I have the following structure

mf
├── dir1
│   └── file1
├── file1
├── file2
├── file3
├── file4
└── file5

Is it possible to upload only the content that is inside the mf folder by az cli commands to a storage account container?

英文:

I have the following structure

mf
├── dir1
│   └── file1
├── file1
├── file2
├── file3
├── file4
└── file5

Is it possible to upload only the content that is inside the mf folder by az cli commands to a storage account container?

答案1

得分: 1

以下是翻译好的部分:

我在我的环境中重现了并获得了如下的预期结果,并按照Microsoft文档进行了操作:

首先,我有:

将目录中的所有内容上传到存储账户容器。

然后使用了:

az storage blob upload-batch --destination "容器名称" --account-name "rithwik" --source "C:\Users\Downloads\mf"

将目录中的所有内容上传到存储账户容器。

上传后:

将目录中的所有内容上传到存储账户容器。

如果您想要与mf相同的结构:

az storage blob upload-batch --destination "rithwik" --account-name "rithwik" --destination-path mf --source "C:\Users\Downloads\mf"

将目录中的所有内容上传到存储账户容器。

在Azure门户中:

将目录中的所有内容上传到存储账户容器。

mf内:

将目录中的所有内容上传到存储账户容器。

dir1内:

将目录中的所有内容上传到存储账户容器。

英文:

I have reproduced in my environment and got expected results as below and I followed Microsoft-Document:

Firstly, I have :

将目录中的所有内容上传到存储账户容器。

Then used :

az storage blob upload-batch --destination "name of container" --account-name "rithwik"  --source "C:\Users\Downloads\mf"

将目录中的所有内容上传到存储账户容器。

After Uploading:

将目录中的所有内容上传到存储账户容器。

If you want it in same structure with mf :

az storage blob upload-batch --destination "rithwik" --account-name "rithwik" --destination-path mf --source "C:\Users\Downloads\mf"

将目录中的所有内容上传到存储账户容器。

In Azure Portal:

将目录中的所有内容上传到存储账户容器。

Inside mf:

将目录中的所有内容上传到存储账户容器。

Inside dir1:

将目录中的所有内容上传到存储账户容器。

huangapple
  • 本文由 发表于 2023年5月11日 14:08:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/76224596.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定