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.

Possible Duplicate:
PHP list of specific files in a directory
use php scandir($dir) and get only images!

So right now I have a directory and I am getting a list of files

$dir_f = "whatever/random/";
$files = scandir($dir_f);

That, however, retrieves every file in a directory. How would I retrive only files with a certain extension such as .ini in most efficient way.

share|improve this question
4  
There is like a couple dozen question asking the same. Please do research before asking questions. – Gordon Sep 30 '12 at 19:55
Use scandir – Korvin Szanto Sep 30 '12 at 19:55
1  
i would use glob() – Dagon Sep 30 '12 at 19:56
1  
I think that glob would be a better choice than scandir. – Francois Deschenes Sep 30 '12 at 19:56
2  
us3.php.net/manual/en/function.glob.php glob("*.txt") – Michael Berkowski Sep 30 '12 at 20:20
show 1 more comment

marked as duplicate by Gordon, Jocelyn, tereško, hakre, phant0m Nov 24 '12 at 11:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

up vote 3 down vote accepted

PHP's glob() function let's you specify a pattern to search for.

share|improve this answer
this is the best. – FDisk Dec 16 '11 at 23:22

PHP has a great function to help you capture only the files you need. Its called glob()

glob - Find pathnames matching a pattern

Here is an example usage -

$files = array();
foreach (glob("/path/to/folder/*.txt") as $file) {
  $files[] = $file;
}

Reference -

share|improve this answer
4  
please do not answer obvious duplicates but closevote them. thanks. – Gordon Sep 30 '12 at 19:57
2  
@gor - needed more than just my vote to close as a dupe‌​... – Lix Sep 30 '12 at 20:00

You can try using GlobIterator

$iterator = new \GlobIterator(__DIR__ . '/*.txt', FilesystemIterator::KEY_AS_FILENAME);
$array = iterator_to_array($iterator);
var_dump($array)
share|improve this answer

If you want more than one extension searched, then preg_grep() is an alternative for filtering:

 $files = preg_grep('~\.(jpeg|jpg|png)$~', scandir($dir_f));

Though glob has a similar extra syntax. This mostly makes sense if you have further conditions, add the ~i flag for case-insensitive, or can filter combined lists.

share|improve this answer

glob($pattern, $flags)

<?php
foreach (glob("*.txt") as $filename) {
    echo "$filename size " . filesize($filename) . "\n";
}
?>
share|improve this answer

try this

//path to directory to scan
$directory = "../file/";

//get all image files with a .txt extension.
$file= glob($directory . "*.txt ");

//print each file name
foreach($file as $filew)
{
echo $filew;
$files[] = $filew; // to create the array

}
share|improve this answer
I don't know any files with a .text extension. – Madara Uchiha Sep 30 '12 at 19:58
@MadaraUchiha sorry it was a typo – Database_Query Sep 30 '12 at 19:59

haven't tested the regex but something like this:

if ($handle = opendir('/file/path')) {

    while (false !== ($entry = readdir($handle))) {
        if (preg_match('/\.txt$/', $entry)) {
            echo "$entry\n";
        }
    }

    closedir($handle);
}
share|improve this answer

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