Skip to main content

Looping through directory and list files after sorting - php function


PHP Code for simply looping and listing the files names in a directory into a select box.


<select>
<?php

$logFolder="../csvfolder";
if ( $handle = opendir($logFolder) ) {
/* loop over the directory. */
while (false !== ($file = readdir($handle))) {
if( stripos( $file,".csv" ) > 0 )
echo "<option value=\"$file\">$file</option>\n";
}

closedir($handle);
}

?>
</select>


Here I am checking whether the file in the folder is a csv file, if it is a csv it is listed.




PHP function to loop through the files in a directory and list the file names after sorting it.


<ul>
<?php
$dir = "directory";
if ($handle = opendir ($dir)) {
while (false !== ($file = readdir ($handle))) {
if (preg_match ("/.inc$/i", $file)) {
$file = str_replace ("_", " ", $file);
$file = explode (".", $file);
$file = $file[0];
$filelist[] = trim ($file);
}
}
sort ($filelist);
reset ($filelist);
while (list ($key, $val) = each ($filelist)) {
print (" <li><a href=\"temp.php?type=$val\">$val</a></li>\n");
}
closedir ($handle);
}
?>
</ul>








A Php function you can use to list the files in the directory you specify, their type (dir or file) and whether they are hidden.

Modify it to do other things.


<?php
function listDirs($where){
echo "<table border=\"1\"><tr><td><b>Name</b></td><td><b>Type</b></td>";
echo "<td><b>Invisible (Hidden)?</b></td></tr>";
$itemHandler=opendir($where);
$i=0;
while(($item=readdir($itemHandler)) !== false){
if(substr($item, 0, 1)!="."){
if(is_dir($item)){
echo "<tr><td>$item</td><td>Directory</td><td>No</td></tr>";
}else{
echo "<tr><td>$item</td><td>File</td><td>No</td></tr>";
}
$i++;
}else{
if(is_dir($item)){
echo "<tr><td>$item</td><td>Directory</td><td>Yes</td></tr>";
}else{
echo "<tr><td>$item</td><td>File</td><td>Yes</td></tr>";
}
$i++;
}
}
echo "</table>";
}
?>


//Then call it like this.


<?php
listDirs(DIR);
?>


//Example:
<?php
listDirs("/tests/directorylisting");
?>





Comments

Popular posts from this blog

Sachin Tendulkar's emotional farewell Speech at Wankhede Stadium, Mumbai - Full Text and Video

Full Text and Video of Sachin Tendulkar's emotional farewell Speech on Nov 16, 2014 On November 16, 2013 - Sachin Ramesh Tendulkar played his last international cricket match against West-Indies at the at Wankhede Stadium, Mumbai. After the match he gave an emotional farewell speech. No one would be able forget the speech. The eyes of the gathered people were tearfull. Through out the speech Sachin thanked each and everyone who supported and encouraged him to build up his glorius career which spanned 24 years.

How to add "Link to this page" option under blogger posts?

Steps in adding Link to this page to your blogger posts Links to your page can improve your page rank. So it is a good option to add HTML code for linking to your web page. So that reader can copy and paste it on their web page. if another website links to your web page, this is considered an external link to your website. External links to your website are the most important source of ranking power and in SEO terminology it is considered as third party ranking vote for your page.

PETMAN Robot from Boston Dynamics

PETMAN from Boston Dynamics Here comes another amazing robot from Boston Dynamics . PETMAN is the name given to this wonderful anthropomorphic robot. This will be used for testing special clothing used by US military personnel. Features of PETMAN Amazing body balance: robot balances itself as it walks, squats and does calisthenics.


Urgent Openings for PHP trainees, Andriod / IOS developers and PHP developers in Kochi Trivandrum Calicut and Bangalore. Please Send Your updated resumes to recruit.vo@gmail.com   Read more »
Member
Search This Blog