以树型结构列出整个磁盘上的文件的Active
时间:2007-02-17 来源:PHP爱好者
把你的函数改写成递归函数,现在这个函数可以列出某指定目录内的所有文件及子目录内的文件啦。
<?
function listdir($path)
{
chdir($path);
$d = dir($path);
$d->path."<br>n";
print "<ul style='font-size:9pt;'>";
while($entry=$d->read()){
if ($entry<>"." and $entry<>".." ){
$last=filemtime($entry);
print "<li>";
$name=is_dir($entry)?("<img src=http://www.ddvip.net/web/php/index2/folder.gif>".$entry):("<img src=http://www.ddvip.net/web/php/index2/file.gif>".$entry);
print $name." --- ".date("Y/m/d h:i:s",$last);
if (is_dir($path."/".$entry)){
listdir($path."/".$entry);
}
}
}
$d->close();
print "</ul>";
}
$listpath="c:";
echo $listpath;
listdir($listpath);
?>
php爱好者站 http://www.phpfans.net dreamweaver|flash|fireworks|photoshop.
相关阅读 更多 +