使用下面的 PHP 代码片段可以在一个目录中列出所有文件和文件夹
- function list_files($dir)
- {
- if(is_dir($dir))
- {
- if($handle = opendir($dir))
- {
- while(($file = readdir($handle)) !== false)
- {
- if($file != "." && $file != ".." && $file != "Thumbs.db"/*pesky windows, images..*/)
- {
- echo ''.$file.'
'."\n";
- }
- }
- closedir($handle);
- }
- }
- }
复制代码
用法:
-
list_files("images/"); //This will list all files of images folder
- ?>
复制代码
|