How to move a file on Azure File Storage from one sub folder to another sub folder using the Azure Storage SDK?

后端 未结 6 1289
梦谈多话
梦谈多话 2020-12-20 16:58

I\'m trying to figure out how to move a file in Azure File Storage from one location to another location, in the same share.

E.g.

source -> \\\\Sh         


        
6条回答
  •  梦毁少年i
    2020-12-20 17:10

    An Azure Storage File share is an SMB-compatible share. So you should be able to make file copies/moves with normal file I/O operations. This is in contrast to direct blob manipulation, where you need to specifically create containers, initiate blob copies, etc. via the Storage API.

提交回复
热议问题