Sha256: 14a8e98f127d31b2f4cb5dd2a94ab7335a7d8d6e191b2c18c7694458f2a91fa7

Contents?: true

Size: 832 Bytes

Versions: 46

Compression:

Stored size: 832 Bytes

Contents

# move(src, dest, [options, callback])

Moves a file or directory, even across devices.

- `src` `<String>`
- `dest` `<String>`
- `options` `<Object>`
  - `overwrite` `<boolean>`: overwrite existing file or directory, default is `false`.
- `callback` `<Function>`

## Example:

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

fs.move('/tmp/somefile', '/tmp/does/not/exist/yet/somefile', err => {
  if (err) return console.error(err)

  console.log('success!')
})

fs.move('/tmp/somefile', '/tmp/does/not/exist/yet/somefile')
.then(() => {
  console.log('success!')
})
.catch(err => {
  console.error(err)
})
```

**Using `overwrite` option**

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

fs.move('/tmp/somedir', '/tmp/may/already/existed/somedir', { overwrite: true }, err => {
  if (err) return console.error(err)

  console.log('success!')
})
```

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
ilog-0.4.1 node_modules/fs-extra/docs/move.md
ilog-0.4.0 node_modules/fs-extra/docs/move.md
ilog-0.3.3 node_modules/fs-extra/docs/move.md
govuk_publishing_components-18.0.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.21.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.20.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.19.1 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.19.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.18.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.17.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.16.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.15.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.14.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.13.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.12.2 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.12.1 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.12.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.11.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.10.0 node_modules/fs-extra/docs/move.md
govuk_publishing_components-17.9.0 node_modules/fs-extra/docs/move.md