AzureBlobFileSystem.AzureBlobStorageProvider.GetFile C# (CSharp) Method

GetFile() public method

public GetFile ( string path ) : IStorageFile
path string
return IStorageFile
        public IStorageFile GetFile(string path)
        {
            var container = EnsurePathIsRelativeAndEnsureContainer(ref path);

            container.EnsureBlobExists(path);
            return new AzureBlobFileStorage(container.GetBlockBlobReference(path), this);
        }