MBrace.Core


CloudFileInfo

Namespace: MBrace.Core

Serializable reference to a file in the cloud store that can be used for accessing properties of files.

Record Fields

Record FieldDescription
path
Signature: string
Modifiers: mutable
store
Signature: ICloudFileStore
Modifiers: mutable

Constructors

ConstructorDescription
new(store, path)
Signature: (store:ICloudFileStore * path:string) -> CloudFileInfo

Defines a reference to a cloud file. This will not create a file in the local store.

CompiledName: .ctor

Instance members

Instance memberDescription
LastModifed
Signature: DateTimeOffset

Gets the last modified time of current file if it exists.

CompiledName: get_LastModifed

Path
Signature: string

Path to cloud file

CompiledName: get_Path

Size
Signature: int64

Gets the size (in bytes) of current file if it exists.

CompiledName: get_Size

Fork me on GitHub