CloudDirectoryClient
Namespace: MBrace.Core.Internals
Collection of file store operations
Instance members
Instance member | Description |
Create(dirPath)
Signature: dirPath:string -> CloudDirectoryInfo
|
Creates a new directory in store. |
CreateAsync(dirPath)
Signature: dirPath:string -> Async<CloudDirectoryInfo>
|
Creates a new directory in store. |
Delete(dirPath, recursiveDelete)
Signature: (dirPath:string * recursiveDelete:bool option) -> unit
|
Deletes directory from store. |
DeleteAsync(dirPath, recursiveDelete)
Signature: (dirPath:string * recursiveDelete:bool option) -> Async<unit>
|
Deletes directory from store. |
Enumerate(dirPath)
Signature: dirPath:string -> CloudDirectoryInfo []
|
Enumerates all directories contained in path. |
EnumerateAsync(dirPath)
Signature: dirPath:string -> Async<CloudDirectoryInfo []>
|
Enumerates all directories contained in path. |
Exists(dirPath)
Signature: dirPath:string -> bool
|
Checks if directory exists in given path |
ExistsAsync(dirPath)
Signature: dirPath:string -> Async<bool>
|
Checks if directory path exists in given path. |