mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2026-01-18 16:13:55 +00:00
379 B
379 B
move(src, dest, [options], callback)
Moves a file or directory, even across devices.
Options:
- overwrite (boolean): overwrite existing file or directory, default is
false
Example:
var fs = require('fs-extra')
fs.move('/tmp/somefile', '/tmp/does/not/exist/yet/somefile', function (err) {
if (err) return console.error(err)
console.log("success!")
})