Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 459 Bytes

ensureLink-sync.md

File metadata and controls

19 lines (13 loc) · 459 Bytes

ensureLinkSync(srcpath, dstpath)

Ensures that the link exists. If the directory structure does not exist, it is created.

Alias: createLinkSync()

  • srcpath <String>
  • dstpath <String>

Example:

const fs = require('fs-extra')

const srcpath = '/tmp/file.txt'
const dstpath = '/tmp/this/path/does/not/exist/file.txt'
fs.ensureLinkSync(srcpath, dstpath)
// link has now been created, including the directory it is to be placed in