Sha256: b701b1ddbb89fc2fe2f6540ee78f6d4a2647815f6f563e2db7b3f47f6996bad6

Contents?: true

Size: 636 Bytes

Versions: 46

Compression:

Stored size: 636 Bytes

Contents

# ensureLink(srcpath, dstpath, [callback])

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

- `srcpath` `<String>`
- `dstpath` `<String>`
- `callback` `<Function>`

## Example:

```js
const fs = require('fs-extra')

const srcpath = '/tmp/file.txt'
const dstpath = '/tmp/this/path/does/not/exist/file.txt'
fs.ensureLink(srcpath, dstpath, err => {
  console.log(err) // => null
  // link has now been created, including the directory it is to be placed in
})

// With Promises:
fs.ensureLink(srcpath, dstpath)
.then(() => {
  console.log('success!')
})
.catch(err => {
  console.error(err)
})
```

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
govuk_publishing_components-16.21.0 node_modules/fs-extra/docs/ensureLink.md
govuk_publishing_components-16.20.1 node_modules/fs-extra/docs/ensureLink.md
govuk_publishing_components-16.20.0 node_modules/fs-extra/docs/ensureLink.md
govuk_publishing_components-16.19.0 node_modules/fs-extra/docs/ensureLink.md
govuk_publishing_components-16.18.0 node_modules/fs-extra/docs/ensureLink.md
govuk_publishing_components-16.17.0 node_modules/fs-extra/docs/ensureLink.md