Azure Storage Type Provider


BlobFolder

Namespace: FSharp.Azure.StorageTypeProvider.Blob

Represents a pseudo-folder in blob storage.

Instance members

Instance memberDescription
Download(path, connectionString)
Signature: (path:string * connectionString:string option) -> Async<unit>

Downloads the entire folder contents to the local file system asynchronously.

[path]
Signature: path:string -> BlockBlobFile

Allows unsafe navigation to a blob by name.

CompiledName: get_Item

ListBlobs(...)
Signature: (includeSubfolders:bool option * prefix:string option * connectionString:string option) -> seq<BlobFile>

Lists all blobs contained in this folder

Path
Signature: string

The Path of the current folder

CompiledName: get_Path

TryGetBlockBlob(path, connectionString)
Signature: (path:string * connectionString:string option) -> Async<BlockBlobFile option>

Safely retrieves a reference to a block blob asynchronously.

TryGetPageBlob(path, connectionString)
Signature: (path:string * connectionString:string option) -> Async<PageBlobFile option>

Safely retrieves a reference to a page blob asynchronously.

Fork me on GitHub