Heim > Backend-Entwicklung > PHP-Tutorial > visitseoul php visitFile遍历指定文件夹函数

visitseoul php visitFile遍历指定文件夹函数

WBOY
Freigeben: 2016-07-29 08:43:38
Original
1110 Leute haben es durchsucht

注:visitFile()有少量修改

复制代码 代码如下:



// 查看指定文件夹的文件
$fileList = array();
function visitFile($path)
{
global $fileList;
$path = str_replace("\\", "/", $path);
$fdir = dir($path);
while (($file = $fdir->read()) !== false)
{
if($file == '.' || $file == '..'){ continue; }
$pathSub = preg_replace("*/{2,}*", "/", $path."/".$file); // 替换多个反斜杠
$fileList[] = is_dir($pathSub) ? $pathSub."/" : $pathSub;
if(is_dir($pathSub)){ visitFile($pathSub); }
}
$fdir->close();
return $fileList;
}
?>



$path = str_replace("\\", "/", $path);
$path = preg_replace("*/{2,}*", "/", $path);
?>
路径:

  • 磁盘根目录 /

  • 网络本地 ./phpMyAdmin

  • 本地磁盘 file://C: 或者 C:







  • if(!empty($path)){
    $path = preg_replace("*/{2,}*", "/", $path);
    $files = visitFile($path);
    switch(strtolower($_GET["action"]))
    {
    case "view":
    foreach($files as $key => $value)
    {
    printf("No.%4d·%s
    \r\n", $key+1, $value);
    }
    break;
    case "delete":
    $faileFiles = array();
    foreach(array_reverse($files) as $value)
    {
    if(!unlink($value))
    {
    array_push($faileFiles, $value);
    }
    }
    if(!unlink($path)) { array_push($faileFiles, $path); }
    if(count($faileFiles) > 0)
    {
    printf("

    删除失败文件(%d):

    \r\n", count($faileFiles));
    foreach( $faileFiles as $key => $value)
    {
    printf("No.%4d·%s
    \r\n", $key+1, $value);
    }
    }
    break;
    }
    }
    ?>

    以上就介绍了visitseoul php visitFile遍历指定文件夹函数,包括了visitseoul方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

    Verwandte Etiketten:
    Quelle:php.cn
    Erklärung dieser Website
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
    Beliebte Tutorials
    Mehr>
    Neueste Downloads
    Mehr>
    Web-Effekte
    Quellcode der Website
    Website-Materialien
    Frontend-Vorlage