Jump to content

recursively locate all unique folders?


jjk2

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.