Jump to content

reading certain files in directory


j0se

Recommended Posts

You can use the "scandir($dir)" fucntion to get an array with all the files and diretories in the directory, and then run a loop.
Here:
[code]$filetype=(the type of file you need);
$files=scandir($dir);
$num=count($files);
$i=0;
while($i<$num)
{
if(is_file($files[$i])){
$var=pathinfo($files[$i]);
if($var['extension']==$filetype){
echo($files[$i]);
};//close second if
};//close first if
};//close while[/code]
This echos all the files with the extension you set.

Orio.


**EDIT**
Just found this:
[a href=\"http://www.php.net/manual/en/function.scandir.php\" target=\"_blank\"]http://www.php.net/manual/en/function.scandir.php[/a]
Check the seond from top user note by www.mdsjack.bo.it
Link to comment
Share on other sites

A possible alternative could use glob():
[code]<?php
$ext = array("txt","jpg");
$files = array();
foreach($ext as $e) {
    foreach(glob("*.$e") as $filename) {
        $files[] .= $filename;
    }
}
?>[/code]
$files contains all of the .txt and .jpg filenames as an array.
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.