Sha256: 5d022577d60bd885876f2b2f3495abb50db59287b2fddb75440f50c808e42441
Contents?: true
Size: 394 Bytes
Versions: 46
Compression:
Stored size: 394 Bytes
Contents
# ensureDirSync(dir) Ensures that the directory exists. If the directory structure does not exist, it is created. Like `mkdir -p`. **Aliases:** `mkdirsSync()`, `mkdirpSync()` - `dir` `<String>` ## Example: ```js const fs = require('fs-extra') const dir = '/tmp/this/path/does/not/exist' fs.ensureDirSync(dir) // dir has now been created, including the directory it is to be placed in ```
Version data entries
46 entries across 46 versions & 2 rubygems