add readdirSyncRecursive and the test runner file.

This commit is contained in:
millermedeiros 2012-01-14 14:03:40 -02:00
parent 29cb04590b
commit 139ed486f1
9 changed files with 86 additions and 3 deletions

View file

@ -25,6 +25,9 @@ wrench.mkdirSyncRecursive(dir, 0777);
// Recursively delete the entire sub-tree of a directory, then kill the directory
wrench.rmdirSyncRecursive('my_directory_name', failSilently);
// Recursively read directories contents.
wrench.readdirSyncRecursive('my_directory_name');
// Recursively chmod the entire sub-tree of a directory
wrench.chmodSyncRecursive('my_directory_name', 0755);