Merge pull request #82 from newmanw/master

README updates for move
This commit is contained in:
JP Richardson 2014-09-04 02:50:49 -05:00
commit e8456ee00a

View File

@ -153,10 +153,14 @@ fs.mkdirsSync('/tmp/another/path');
```
### move(src, dest, callback)
### move(src, dest, [options], callback)
Moves a file or directory, even across devices.
Options:
clobber (boolean): overwrite existing file or directory
limit (number): number of concurrent moves, see ncp for more information
Example:
```javascript