wrench-js
wrench-js copied to clipboard
Recursive file operations in Node.js
I tried to grant permissions on folders creation and it don't really do the job right. I saw couple of open issues about that, it would be appreciated if you...
There's an `npm` repo I'm trying to copy recursively. I'm trying not to copy hidden unix files like `.git` and `.gitignore` and I also want to exclude a `build` and...
It would be good to clarify the defaults for these in the readme: ``` js forceDelete: bool, // Whether to overwrite existing directory or not excludeHiddenUnix: bool, // Whether to...
It seems as though file flags are ignored when copying recursively using `copyDirRecursive`
I am needing to clear the contents of a folder before my app launches. As the permissions are normally `-rw-rw-rw` i can't chmod it, it seems...but I can remove it....
This doesn't actually affect me, but while troubleshooting other issues, I ran `npm test` on my Windows 8.1 box, which had several failures... thought you'd like to know: ``` C:\Users\Corey\Documents\workspace\NGN\Library\ngn\node_modules\wrench>npm...
If I want to call chmodSyncRecursive(dir, 0644), then that directory and all subdirectories become unlistable because directories must have execute permissions. chmodSyncRecursive (and maybe other similar functions) should take a...
In case the directory to rmdir recursive does not exist an error is thrown (not passed to the callback): "Cannot call method 'shift' of undefined" wrench.js:382:34
Normally mkdir is fast operation which can be executed synchronously without blocking event loop for too long time, but this holds only for "local filesystems". When trying to use wrench...