mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2026-01-18 16:13:55 +00:00
424 B
424 B
moveSync(src, dest, [options])
Moves a file or directory, even across devices.
Options:
- overwrite (boolean): overwrite existing file or directory, default is
false
Example:
const fs = require('fs-extra')
fs.moveSync('/tmp/somefile', '/tmp/does/not/exist/yet/somefile')
const fs = require('fs-extra')
fs.moveSync('/tmp/somedir', '/tmp/may/already/existed/somedir', { overwrite: true })