AzureStorageSync let's users synchronize a local directory with an Azure storage container via the command line.
This library is created because I prefer not to mess around with powershell. This tool is a command line wrapper around the Azure SDK.
--
To use this tool, use the following command line:
AzureStorageSync.exe [localDirectory] [remoteDirectory] -c [connectionString]
For example:
AzureStorageSync.exe C:\TestDirectory /testcontainer/testdirectory -c DefaultEndpointsProtocol=https;AccountName=youraccountname;AccountKey=youraccountkey
The Azure container will automatically be determined from the remote directory. The string /testcontainer/testdirectory/subdirectory will result in the following information:
- Container name: testcontainer
- Root directory testdirectory/subdirectory

