- mkdirSync(
this: V_Context,
path: PathLike,
options: MakeDirectoryOptions & { recursive: true },
): string | undefined Parameters
- this: V_Context
- path: PathLike
- options: MakeDirectoryOptions & { recursive: true }
Returns string | undefined
- mkdirSync(
this: V_Context,
path: PathLike,
options?: null | Mode | MakeDirectoryOptions & { recursive?: false },
): void Parameters
- this: V_Context
- path: PathLike
Optional
options: null | Mode | MakeDirectoryOptions & { recursive?: false }
Returns void
- mkdirSync(
this: V_Context,
path: PathLike,
options?: null | Mode | MakeDirectoryOptions,
): string | undefined Parameters
- this: V_Context
- path: PathLike
Optional
options: null | Mode | MakeDirectoryOptions
Returns string | undefined
Synchronous
mkdir
. Mode defaults too777
.