mirror of
https://github.com/bakustarver/rpgmakermlinux-cicpoffs.git
synced 2025-04-29 19:44:52 +02:00
618 B
618 B
moveSync(src, dest[, options])
Moves a file or directory, even across devices.
src
<String>
dest
<String>
Note: Whensrc
is a file,dest
must be a file and whensrc
is a directory,dest
must 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 })