skip to Main Content

How to move directory in azure and ZIP it using ShareDirectoryClient in azure file share

I am able to move the directory in azure using ShareDirectoryClient successfully. using System; using System.Threading.Tasks; using Azure.Storage.Files.Shares; namespace SO69798149 { class Program { const string MyconnectionString = "DefaultEndpointsProtocol=https;AccountName=account-name;AccountKey=account-key"; const string MyshareName = "share-name"; const string SourceDirectoryName = "source-directory-name"; private…

VIEW QUESTION
Back To Top
Search