Header menu logo FSharp.Data.Adaptive

AdaptiveDirectory Type

Adaptive functions for handling directories.

Static members

Static member Description

AdaptiveDirectory.Exists(path)

Full Usage: AdaptiveDirectory.Exists(path)

Parameters:
    path : string

Returns: aval<bool>

Adaptively determines whether the specified directory exists.

path : string
Returns: aval<bool>

AdaptiveDirectory.GetCreationTime(path)

Full Usage: AdaptiveDirectory.GetCreationTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets the creation time for the specified directory.

path : string
Returns: aval<DateTime>

AdaptiveDirectory.GetCreationTimeUtc(path)

Full Usage: AdaptiveDirectory.GetCreationTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

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

path : string
Returns: aval<DateTime>

AdaptiveDirectory.GetFileSystemEntries(path, ?regex)

Full Usage: AdaptiveDirectory.GetFileSystemEntries(path, ?regex)

Parameters:
    path : string
    ?regex : Regex

Returns: aset<FileSystemInfo>

Gets an aset holding all existing Files/Directories in path whose name matches the specified Regex (if any).

path : string
?regex : Regex
Returns: aset<FileSystemInfo>

AdaptiveDirectory.GetFiles(path)

Full Usage: AdaptiveDirectory.GetFiles(path)

Parameters:
    path : string

Returns: aset<FileInfo>

Gets an aset holding all existing Files in path.

path : string
Returns: aset<FileInfo>

AdaptiveDirectory.GetFiles(path, recursive)

Full Usage: AdaptiveDirectory.GetFiles(path, recursive)

Parameters:
    path : string
    recursive : bool

Returns: aset<FileInfo>

Gets an aset holding all existing Files in path (recursively).

path : string
recursive : bool
Returns: aset<FileInfo>

AdaptiveDirectory.GetFiles(path, ?pattern, ?recursive)

Full Usage: AdaptiveDirectory.GetFiles(path, ?pattern, ?recursive)

Parameters:
    path : string
    ?pattern : string
    ?recursive : bool

Returns: aset<FileInfo>

Gets an aset holding all existing Files in path (recursively) whose name matches the specified Regex-pattern (if any).

path : string
?pattern : string
?recursive : bool
Returns: aset<FileInfo>

AdaptiveDirectory.GetFiles(path, ?regex, ?recursive)

Full Usage: AdaptiveDirectory.GetFiles(path, ?regex, ?recursive)

Parameters:
    path : string
    ?regex : Regex
    ?recursive : bool

Returns: aset<FileInfo>

Gets an aset holding all existing Files in path (recursively) whose name matches the specified Regex (if any).

path : string
?regex : Regex
?recursive : bool
Returns: aset<FileInfo>

AdaptiveDirectory.GetLastAccessTime(path)

Full Usage: AdaptiveDirectory.GetLastAccessTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last access time for the specified directory.

path : string
Returns: aval<DateTime>

AdaptiveDirectory.GetLastAccessTimeUtc(path)

Full Usage: AdaptiveDirectory.GetLastAccessTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

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

path : string
Returns: aval<DateTime>

AdaptiveDirectory.GetLastWriteTime(path)

Full Usage: AdaptiveDirectory.GetLastWriteTime(path)

Parameters:
    path : string

Returns: aval<DateTime>

Adaptively gets last write time for the specified directory.

path : string
Returns: aval<DateTime>

AdaptiveDirectory.GetLastWriteTimeUtc(path)

Full Usage: AdaptiveDirectory.GetLastWriteTimeUtc(path)

Parameters:
    path : string

Returns: aval<DateTime>

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

path : string
Returns: aval<DateTime>

Type something to start searching.