add readdirSyncRecursive and the test runner file.
This commit is contained in:
parent
29cb04590b
commit
139ed486f1
9 changed files with 86 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Reference in a new issue