无法在Azure云中上传批处理文件

时间:2019-06-19 13:29:00

标签: azure batch-file azcopy

我正在使用azcopy命令.its在azure存储帐户上上传一些文件,但工作正常,但无法上传扩展名为.bat的文件。 任何建议都欢迎。

.\Azcopy.exe /Source:C:\Users\d44\Documents\test.bat /Dest:https://redboxtfstatebedtqgliqc.file.core.windows.net/again/test.bat /DestKey:********  /Y

3 个答案:

答案 0 :(得分:1)

解决方法可以是,先将文件上传到Blob容器中,然后将文件从容器复制到文件共享中。

.\Azcopy.exe /Source:C:\Users\d44\Documents\test.bat /Dest:https://redboxtfstatebedtqgliqc.blob.core.windows.net/<container>/test.bat /DestKey:******** /Y

.\Azcopy.exe /Source:https://redboxtfstatebedtqgliqc.blob.core.windows.net/<container>/test.bat /Dest:https://redboxtfstatebedtqgliqc.file.core.windows.net/<file_share>/test.bat /SourceKey:******* /DestKey:******** /Y

答案 1 :(得分:0)

您不需要提供目标文件名。

.\Azcopy.exe /Source:C:\Users\d44\Documents\test.bat /Dest:https://redboxtfstatebedtqgliqc.file.core.windows.net/again/ /DestKey:******** /Y

答案 2 :(得分:0)

我认为命令行应如下所示:

.\Azcopy.exe /Source:C:\Users\d44\Documents\ /Dest:https://redboxtfstatebedtqgliqc.file.core.windows.net/again/test.bat /DestKey:******** /Pattern:test.bat /Y