You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
511 B
25 lines
511 B
2 years ago
|
# 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 })
|
||
|
```
|