BlobSyncCmd.Program.ShowExamples C# (CSharp) Method

ShowExamples() static private method

static private ShowExamples ( ) : void
return void
        static void ShowExamples()
        {
            Console.WriteLine("blobsynccmd upload/download/estimate/estimatelocal/createsig <local file path> <container> <blobname>");
            Console.WriteLine("\n\neg.");
            Console.WriteLine("Upload a file to Azure Blob Storage: blobsynccmd upload c:\\temp\\myfile.txt mycontainer myblobname\n");
            Console.WriteLine("Download a file from Azure Blob Storage: blobsynccmd download c:\\temp\\destinationfilename.txt mycontainer myblobname\n");
            Console.WriteLine("Download a file from Azure Blob Storage: blobsynccmd download c:\\temp\\destinationfilename.txt mycontainer myblobname\n");
            Console.WriteLine("Estimate bytes to upload to update a file: blobsynccmd estimate c:\\temp\\newfile.txt mycontainer existingblobname\n");
            Console.WriteLine("Estimate bytes to upload based on a local signature: blobsynccmd estimatelocal c:\\temp\\newfile.txt c:\\temp\\sigforoldfile\n");
            Console.WriteLine("Generate signature for local file: blobsynccmd createsig c:\\temp\\file.txt\n");
            Console.WriteLine("Generate new signature based off existing (old) sig and new local file: blobsynccmd createdeltasig c:\\temp\\newfile.txt c:\\temp\\sigforoldfile\n");
            Console.WriteLine("Show offset/size contents of signature: blobsynccmd showsig c:\\temp\\sigfile\n");
            Console.WriteLine("Defrag Blob: blobsynccmd defrag mycontainer myblob\n");
            Console.WriteLine("Defrag Blob Estimate: blobsynccmd defraglocal c:\\temp\\mysigfile\n");
        }