Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a loop through all files in subdirectories. Can you please help me struct my code like this:

$main = "MainDirectory";
loop through sub-directories {
    loop through filels in each sub-directory {
        do something with each file
    }
};

Can you help, plz?

share|improve this question
what would you like to do with the files after looping through them? – Anthony Forloney Jan 6 '10 at 16:38
1  
This will help you, read the user contributed notes php.net/manual/en/function.scandir.php – Rashi Mar 18 at 9:34

6 Answers

up vote 40 down vote accepted

Use RecursiveDirectoryIterator in conjunction with RecursiveIteratorIterator.

$di = new RecursiveDirectoryIterator('path/to/directory');
foreach (new RecursiveIteratorIterator($di) as $filename => $file) {
    echo $filename . ' - ' . $file->getSize() . ' bytes <br/>';
}
share|improve this answer
9  
+1 for using SPL :) – Inspire Jan 6 '10 at 16:52

You probably want to use a recursive function for this, in case your sub directories have sub-sub directories

$main = "MainDirectory";

function readDirs($main){
  $dirHandle = opendir($main);
  while($file = readdir($dirHandle){
    if(is_dir($main . $file) && $file != '.' && $file != '..'){
       readDirs($file);
    }
    else{
      //do stuff
    }
  } 
}

didn't test the code, but this should be close to what you want.

share|improve this answer
3  
It will fall in infinite loop trying to recursively read directory "." (single dot - current directory). You need to modify your if-statement: if (is_dir($file) and $file != '.') – Michał Rudnicki Jan 7 '10 at 12:16
thanks, I forgot about that, added it to the code. Glad I put that untested disclaimer :) – GSto Jan 7 '10 at 14:57
thank you both :) – M.Ezz Jan 7 '10 at 14:59
1  
missing closing parenthesis while($file = readdir($dirHandle){, otherwise works perfect! Thanks. – Matt Sep 30 '10 at 21:35
1  
This approach makes it hard in cases where you need the file path as well as the filename – andersand Dec 10 '11 at 20:23
show 2 more comments

Come on, first try it yourself! ;)

What you'll need:

scandir()
is_dir

and of course foreach

http://de.php.net/manual/de/function.is-dir.php

http://de3.php.net/manual/de/function.scandir.php

share|improve this answer

I like glob with it's wildcards :

foreach (glob("*/*.txt") as $filename) {
    echo "$filename\n";
}

Details and more complex scenarios.

But if You have a complex folders structure RecursiveDirectoryIterator is definitively the solution.

share|improve this answer
short'n'sweet. recommend replacing "\n" (linefeed when writing to a txt file) with "<br/>" (HTML line break). – tony gil Jul 29 '12 at 1:59

You need to add the path to your recursive call.

function readDirs($path){
  $dirHandle = opendir($path);
  while($item = readdir($dirHandle)) {
    $newPath = $path."/".$item;
    if(is_dir($newPath) && $item != '.' && $item != '..') {
       echo "Found Folder $newPath<br>";
       readDirs($newPath);
    }
    else{
      echo '&nbsp;&nbsp;Found File or .-dir '.$item.'<br>';
    }
  }
}

$path =  "/";
echo "$path<br>";

readDirs($path);
share|improve this answer

Another solution to read with sub-directories and sub-files (set correct foldername):

<?php
$path = realpath('samplefolder/yorfolder');
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)) as $filename)
{
        echo "$filename <br/>";
}
?>
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.