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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.