Sha256: 6c5d543a50a9576629ef7b8054cad7ccf166510e6ee89f02dfa2df5b3c7f15d5

Contents?: true

Size: 511 Bytes

Versions: 46

Compression:

Stored size: 511 Bytes

Contents

# moveSync(src, dest, [options])

Moves a file or directory, even across devices.

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

## Example:

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

fs.moveSync('/tmp/somefile', '/tmp/does/not/exist/yet/somefile')
```

**Using `overwrite` option**

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

fs.moveSync('/tmp/somedir', '/tmp/may/already/existed/somedir', { overwrite: true })
```

Version data entries

46 entries across 46 versions & 2 rubygems

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