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.
 

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!")
})