mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2025-12-08 20:36:18 +00:00
618 B
618 B
moveSync(src, dest[, options])
Moves a file or directory, even across devices.
src<String>dest<String>Note: Whensrcis a file,destmust be a file and whensrcis a directory,destmust be a directory.options<Object>overwrite<boolean>: overwrite existing file or directory, default isfalse.
Example:
const fs = require('fs-extra')
fs.moveSync('/tmp/somefile', '/tmp/does/not/exist/yet/somefile')
Using overwrite option
const fs = require('fs-extra')
fs.moveSync('/tmp/somedir', '/tmp/may/already/exist/somedir', { overwrite: true })