BlobSync.Helpers.AzureHelper.GetBlobNameFromFilePath C# (CSharp) Method

GetBlobNameFromFilePath() static private method

static private GetBlobNameFromFilePath ( string localFilePath ) : string
localFilePath string
return string
        internal static string GetBlobNameFromFilePath(string localFilePath)
        {
            var url = new Uri(localFilePath);
            var blobName = url.Segments[url.Segments.Length - 1];
            return blobName;
        }