Header menu logo FSharp.Data.Adaptive

AdaptiveFile Type

Adaptive functions for handling files.

Static members

Static member Description

AdaptiveFile.Exists(path)

Full Usage: AdaptiveFile.Exists(path)

Parameters:
    path : string

Returns: aval<bool>

Adaptively determines whether the specified file exists.

path : string
Returns: aval<bool>

AdaptiveFile.GetAttributes(path)

Full Usage: AdaptiveFile.GetAttributes(path)

Parameters:
    path : string

Returns: aval<FileAttributes>

Adaptively get the FileAttributes for the path.

path : string
Returns: aval<FileAttributes>

AdaptiveFile.GetCreationTime(path)

Full Usage: AdaptiveFile.GetCreationTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets the creation time for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.GetCreationTimeUtc(path)

Full Usage: AdaptiveFile.GetCreationTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets the creation time (in UTC) for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.GetLastAccessTime(path)

Full Usage: AdaptiveFile.GetLastAccessTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last access time for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.GetLastAccessTimeUtc(path)

Full Usage: AdaptiveFile.GetLastAccessTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last access time (in UTC) for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.GetLastWriteTime(path)

Full Usage: AdaptiveFile.GetLastWriteTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last write time for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.GetLastWriteTimeUtc(path)

Full Usage: AdaptiveFile.GetLastWriteTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last write time (in UTC) for the specified file.

path : string
Returns: aval<DateTime>

AdaptiveFile.ReadAllBytes(path)

Full Usage: AdaptiveFile.ReadAllBytes(path)

Parameters:
    path : string

Returns: aval<byte[]>

Adaptively reads the file's content as aval.

path : string
Returns: aval<byte[]>

AdaptiveFile.ReadAllLines(path)

Full Usage: AdaptiveFile.ReadAllLines(path)

Parameters:
    path : string

Returns: aval<string[]>

Adaptively reads the file's lines as aval.

path : string
Returns: aval<string[]>

AdaptiveFile.ReadAllLinesAList(path)

Full Usage: AdaptiveFile.ReadAllLinesAList(path)

Parameters:
    path : string

Returns: alist<string>

Adaptively reads the file's lines as alist.

path : string
Returns: alist<string>

AdaptiveFile.ReadAllText(path)

Full Usage: AdaptiveFile.ReadAllText(path)

Parameters:
    path : string

Returns: aval<string>

Adaptively reads the file's content as aval.

path : string
Returns: aval<string>

AdaptiveFile.TryReadAllBytes(path)

Full Usage: AdaptiveFile.TryReadAllBytes(path)

Parameters:
    path : string

Returns: aval<byte[] option>

Adaptively tries to read the file's content as aval>.

path : string
Returns: aval<byte[] option>

AdaptiveFile.TryReadAllLines(path)

Full Usage: AdaptiveFile.TryReadAllLines(path)

Parameters:
    path : string

Returns: aval<string[] option>

Adaptively tries to read the file's lines as aval>.

path : string
Returns: aval<string[] option>

AdaptiveFile.TryReadAllText(path)

Full Usage: AdaptiveFile.TryReadAllText(path)

Parameters:
    path : string

Returns: aval<string option>

Adaptively tries to read the file's content as aval>.

path : string
Returns: aval<string option>

Type something to start searching.