PHP如何遍历指定文件夹,获取所有文件列表并生成下载链接??
发布网友
发布时间:2023-09-18 17:37
我来回答
共1个回答
热心网友
时间:2024-11-16 00:06
试编写代码如下:
<?php
$dir="D:/WWW/ftp"; //指定的路径
$sitepath = 'http://localhost/ftp/';
//遍历文件夹下所有文件
if (false != ($handle = opendir ( $dir ))) {
echo "$dir 目录下的文件列表:<BR/>";
$i = 0;
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".." && !is_dir($dir.'/'.$file)) {
echo '<a href="' . $sitepath . $file . '">'.$file. '</a><br/>';
}
}
//关闭句柄
closedir($handle);
}
?>
代码中需要提示的是:
如果是运行于互联网上,需要考虑文件的访问安全性。
运行截图: