xyn Posted March 8, 2007 Share Posted March 8, 2007 How can i list ALL files in a directory? Link to comment https://forums.phpfreaks.com/topic/41823-directories/ Share on other sites More sharing options...
severndigital Posted March 8, 2007 Share Posted March 8, 2007 http://us2.php.net/function.opendir that should get you started. Link to comment https://forums.phpfreaks.com/topic/41823-directories/#findComment-202837 Share on other sites More sharing options...
tarun Posted March 8, 2007 Share Posted March 8, 2007 This: <?php $dir = "/etc/php5/"; // Open a known directory, and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { echo "filename: $file : filetype: " . filetype($dir . $file) . "\n"; } closedir($dh); } } ?> Should List The Directory Contents And A Few Peices Of Info About Each File Link to comment https://forums.phpfreaks.com/topic/41823-directories/#findComment-202848 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.