Sha256: 4c32db4ab90e6fee81e112d405b40b436e4d2c12bd76b2a0649a68269ac6f4ca
Contents?: true
Size: 468 Bytes
Versions: 46
Compression:
Stored size: 468 Bytes
Contents
# ensureSymlinkSync(srcpath, dstpath, [type]) Ensures that the symlink exists. If the directory structure does not exist, it is created. - `srcpath` `<String>` - `dstpath` `<String>` - `type` `<String>` ## Example: ```js const fs = require('fs-extra') const srcpath = '/tmp/file.txt' const dstpath = '/tmp/this/path/does/not/exist/file.txt' fs.ensureSymlinkSync(srcpath, dstpath) // symlink has now been created, including the directory it is to be placed in ```
Version data entries
46 entries across 46 versions & 2 rubygems