Possible Duplicates:
Get the Files inside a directory
PHP: scandir() is too slow

I have a directory with tens of thousands of files in it and I want to display a list of these files on a page. I tried doing it with scandir and it takes forever. What would be an efficient method of achieving this?

link|improve this question
1  
Which of these have you tried: stackoverflow.com/search?q=list+files+directory+php – Gordon Mar 30 '11 at 7:27
You will also want to read Putting Glob to Test – Gordon Mar 30 '11 at 7:28
i've tried those methods - they work fine with a thousand or so files but it takes an age to return hundreds of thousands of files into an array – John Mar 30 '11 at 7:33
2  
Possible duplicate of stackoverflow.com/questions/5172784/php-scandir-is-too-slow – Frosty Z Mar 30 '11 at 7:33
@John if you really already tried scandir, opendir, glob and iterators then please update your question to state that. maybe even add some code and performance numbers. there is no point in having us repeat all the methods that can easily be found in the dozens other questions asking the same. – Gordon Mar 30 '11 at 7:36
show 1 more comment
feedback

closed as exact duplicate by Gordon, bažmegakapa, Greg, ircmaxell, salathe Mar 30 '11 at 8:54

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

I haven't benchmarked them, but your other options are

glob() - http://php.net/manual/en/function.glob.php

opendir() - http://www.php.net/manual/en/function.opendir.php

link|improve this answer
feedback

I recommend using DirectoryIterator or RecursiveDirectoryIterator.

link|improve this answer
2  
I recommend FilesystemIterator over DirectoryIterator. – salathe Mar 30 '11 at 8:53
@salathe +1 :-) – eisberg Mar 30 '11 at 9:01
feedback
$directory=opendir($_SERVER['DOCUMENT_ROOT'].'/directory/');
  while ($file = readdir($directory)) {
    if($file!="." && $file!=".."){
      echo $file."<br>";
    }
  }
closedir($directory);
link|improve this answer
feedback

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