Skip to content
Auto
Products

FileSystem.ListingOptions

Namespace: TagBites.IO
Assembly: TagBites.IO.dll
Product: TagBites.IO v. 2.0.0

Represents the options for listing files/directories.

public class FileSystem.ListingOptions

Inheritance: object → FileSystem.ListingOptions

public ListingOptions()

Gets a value indicating whether the options have defined search pattern.

public bool HasSearchPattern { get; }

bool

true if the options define a search pattern; otherwise, false.

Gets a value indicating whether the search is taking into account subdirectories.

public bool Recursive { get; }

bool

true if the search is taking into account subdirectories; otherwise, false.

Gets a value indicating whether the recursive search is handled.

public bool RecursiveHandled { get; set; }

bool

true if the recursive search is handled; otherwise, false.

Gets a value indicating whether the search is for directories.

public bool SearchForDirectories { get; }

bool

true if the search is for directories; otherwise, false.

Gets a value indicating whether the search is for files.

public bool SearchForFiles { get; }

bool

true if the search is for files; otherwise, false.

Gets the search pattern.

public string SearchPattern { get; }

string

A String containing the search pattern.

Gets a value indicating whether the search pattern is handled.

public bool SearchPatternHandled { get; set; }

bool

true if the search pattern is handled; otherwise, false.