Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 400 Bytes

File metadata and controls

21 lines (17 loc) · 400 Bytes

mkdir (function)

Create a directory (folder).

Provides the same functionality as the unix binary of the same name.

declare function mkdir(
  path: string | Path,
  options?: {
    recursive?: boolean;
    mode?: number;
    logging?: {
      trace?: (...args: Array<any>) => void;
      info?: (...args: Array<any>) => void;
    };
  },
): void;