mymove
v1.0.2
Published
Move files and directories
Downloads
21
Maintainers
Readme
MyMove
This is a module to move a file or a directory using real environment command MOVE & MV
Install
$ npm install mymove
or (globally)
$ npm install mymove -g
Example
var mymove = require("mymove");
mymove(From,To,function(err)
{
if(err)
throw err;
console.log("moved");
});