Interface CopyOptions

interface CopyOptions {
    exists?: "error" | "ignore" | "overwrite";
    from?: null | string;
    glob?: boolean;
    single?: boolean;
    strict?: boolean;
}

Properties

exists?: "error" | "ignore" | "overwrite"

Whether to error, ignore, or overwrite existing files

from?: null | string

Absolute path, or relative to the cwd, to resolve paths from; if not null, the source folder structure will be replicated on destination

glob?: boolean

Parse globs in paths

single?: boolean

Whether to treat the destination as an exact path for a single source

strict?: boolean

Disallows non existent paths and an empty set of paths