<?php
header('Content-type:text/html;charset=utf-8');
//定义一个变量,将要遍历的文件目录
$dir = "D:\E";
function showInfo($dir){
//递归出口
if(!is_dir($dir)){
return;
}
//scandir — 列出指定路径中的文件和目录
$files = scandir($dir);
foreach ($files as $v) {
//拼接
$file = $dir.'/'.$v;
if($v != '.' && $v != '..'){
if(is_dir($file)){
echo "<font color='gray'>".$v."</font><br/>";
//递归点
showInfo($file);
}else{
echo "<font color='blue'>".$v."</font><br/>";
}
}
}
}
showInfo($dir); |
|