jjk2 Posted May 30, 2008 Share Posted May 30, 2008 doing the following will repeat folders for each files. <?php set_time_limit(0); $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator('C:\wamp\www\test'), RecursiveIteratorIterator::CHILD_FIRST); foreach($files as $file) { if ($file->isDir()){ echo $file . "<br>"; } ?> i would like for it to return only unique folders. i dont want it to output the same folders. for example if one of the subfolders have 3 files. it will spit out C:\wamp\www\test\sub\ for each 3 files. i want this script to fetch me recursively unique folder names. Link to comment https://forums.phpfreaks.com/topic/108061-recursively-locate-all-unique-folders/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.