Create a directory if not already there Node
Use mkdirSync
and existsSync
from Node fs
module.
typescript
import { mkdirSync, existsSync } from "fs";
const path = "/path/to/directory/deeply/nested";
if (!existsSync(path)) {
mkdirSync(path, { recursive: true });
}