in reply to Re: Descending a directory tree, returning a list of files
in thread Descending a directory tree, returning a list of files
It works. Well, it returns all the files in the cwd as expected. But when that line is not commented out, if it finds a sub directory, it never returns to finish listing the files in the parent (the one we started in).## dir, decend if (-d $file) { ## sub-directory files #$files = _list_files($file, $files); }
|
|---|