Sha256: 8751038338e05de6583a5b3b2c78f75a2b2197761e977ccf456b275031e9c216
Contents?: true
Size: 480 Bytes
Versions: 46
Compression:
Stored size: 480 Bytes
Contents
# ensureFileSync(file) Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is **NOT MODIFIED**. **Alias:** `createFileSync()` - `file` `<String>` ## Example: ```js const fs = require('fs-extra') const file = '/tmp/this/path/does/not/exist/file.txt' fs.ensureFileSync(file) // file has now been created, including the directory it is to be placed in ```
Version data entries
46 entries across 46 versions & 2 rubygems