1.0.2 • Published 7 years ago

mymove v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

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