Crumbtrail
    Preparing search index...

    Interface IZFileSystemWalkOptions

    Represents options for directory walking.

    interface IZFileSystemWalkOptions {
        mode?: number;
        start?: string;
        stop?: string;
    }
    Index

    Properties

    Properties

    mode?: number

    The type of mode that the path must support in order to be approved.

    The default is undefined and left up to the node api.

    start?: string

    The starting directory.

    The default is the current working directory

    process.cwd for more information.

    stop?: string

    The directory to stop at.

    The default is the root of the file system.