1.0.2 • Published 9 years ago
mymove v1.0.2
MyMove
This is a module to move a file or a directory using real environment command MOVE & MV
Install
$ npm install mymoveor (globally)
$ npm install mymove -gExample
var mymove = require("mymove");
mymove(From,To,function(err)
{
if(err)
throw err;
console.log("moved");
});