public override FileAttributes FileAttributes( string path )
        {
            string fullAzurePath = GetAzurePath( path );

            CloudBlockBlob blob = _container.GetBlockBlobReference( AzureExtensions.ToAzurePath( path ) );

            blob.FetchAttributes();

            var props = new FileAttributes
                            {
                                Uri = blob.Uri,
                                LastModified = DateTime.Now,//TJT: Fixme blob.Properties.LastModified,
                                Length = blob.Properties.Length,
                                Path = path,
                                IsDirectory = false
                            };

            return props;
        }