vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface FindOptions

    interface FindOptions {
        append?: boolean;
        cwd?: string | string[];
        depth?: number;
        exclude?: GlobPatterns;
        findType?: FindType | "directory" | "file";
        limit?: number;
        noCase?: boolean;
        overwrite?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    append?: boolean

    Append to the file instead of overwriting it when it already exists.

    cwd?: string | string[]

    Single or multiple Working directories to use when searching. If not specified the current working directory is used.

    depth?: number

    Maximum depth to search in the directory structure.

    exclude?: GlobPatterns

    Glob patterns of natches to exclude from the search

    findType?: FindType | "directory" | "file"

    Type of items to find, either files or directories or both. By default only files are returned.

    limit?: number

    Maximum number of results to return after which the search is stopped.

    noCase?: boolean

    When true the search is case insensitive, otherwise case sensitive. Defaults to case insensitive matching.

    overwrite?: boolean

    Overwrite the file when it already exists. If set to false, an exception is thrown when the file already exists. Otherwise the file is overwritten (default)

    true