function glob
Jump to headingglob(pattern: string | string[],callback: (err: ErrnoException | null,matches: string[],) => void,): voidRetrieves the files matching the specified pattern.
Parameters Jump to heading
Jump to headingpattern: string | string[]Jump to headingcallback: (err: ErrnoException | null,matches: string[],) => voidReturn Type Jump to heading
voidJump to headingglob(pattern: string | string[],options: GlobOptionsWithFileTypes,callback: (err: ErrnoException | null,matches: Dirent[],) => void,): voidParameters Jump to heading
Jump to headingpattern: string | string[]Jump to headingcallback: (err: ErrnoException | null,matches: Dirent[],) => voidReturn Type Jump to heading
voidJump to headingglob(pattern: string | string[],options: GlobOptionsWithoutFileTypes,callback: (err: ErrnoException | null,matches: string[],) => void,): voidParameters Jump to heading
Jump to headingpattern: string | string[]Jump to headingcallback: (err: ErrnoException | null,matches: string[],) => voidReturn Type Jump to heading
voidJump to headingglob(pattern: string | string[],options: GlobOptions,callback: (err: ErrnoException | null,matches: Dirent[] | string[],) => void,): voidParameters Jump to heading
Jump to headingpattern: string | string[]Jump to headingoptions: GlobOptionsJump to headingcallback: (err: ErrnoException | null,matches: Dirent[] | string[],) => voidReturn Type Jump to heading
void