Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get all sub-directories of a given directory without files, .(current directory) or ..(parent directory) and then use each directory in a function?

share|improve this question

4 Answers

up vote 19 down vote accepted

you can use glob() with GLOB_ONLYDIR option

or

$dirs = array_filter(glob('*'), 'is_dir');
print_r( $dirs);
share|improve this answer
that gives subdirectories as well? – Gordon Mar 26 '10 at 15:09
I didn't think it did.... – Yacoby Mar 26 '10 at 15:20
@Yacoby it doesn't – Gordon Mar 26 '10 at 15:21
You have to do a resursion here – Josef Sábl Nov 18 '10 at 9:31

Sry for answering an old post, but here's how you can retrieve only directories with GLOB:

$directories = glob($somePath . '/*' , GLOB_ONLYDIR);
share|improve this answer
The simplest solution – Jim Thio Jan 24 '12 at 14:57
1  
This also include the main directory. – Jim Thio Jan 24 '12 at 15:35

Almost the same as in your previous question:

$iterator = new RecursiveIteratorIterator(
                new RecursiveDirectoryIterator($yourStartingPath), 
            RecursiveIteratorIterator::SELF_FIRST);

foreach($iterator as $file) {
    if($file->isDir()) {
        echo strtoupper($file->getRealpath()), PHP_EOL;
    }
}

Replace strtoupper with your desired function.

share|improve this answer
1  
nice thanks! one more question: how can I separate only the sub-dir name from the whole path? – Adrian M. Mar 26 '10 at 15:36
@Adrian See dirname php.net/manual/en/function.dirname.php – Yacoby Mar 26 '10 at 15:53
@Adrian Please have a look at the API documentation I gave in your other question. getFilename() will return only the directory name. – Gordon Mar 26 '10 at 15:56
+1. This is the true future-oriented way of doing it. – Flavius Jan 11 at 10:00
    <?php
         /*this will do what you asked for, it only returns the subdirectory names in a given          path, and you can make hyperlinks and use them:
             */

      $yourStartingPath = "photos\\";
       $iterator = new RecursiveIteratorIterator( 
            new RecursiveDirectoryIterator($yourStartingPath),  
        RecursiveIteratorIterator::SELF_FIRST); 

       foreach($iterator as $file) { 
         if($file->isDir()) { 
       $path = strtoupper($file->getRealpath()) ; 
    $path2 = PHP_EOL;
    $path3 = $path.$path2;


    $result = end(explode('/', $path3)); 


    echo "<br />". basename($result );
           } 
      } 

        /* best regards,
    Sanaan Barzinji
        Erbil
       */
         ?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.