파일의 귀속과 삭제

5474 단어
귀속
<?php
$path="E:/php";


function readdiguo($path,$deep=0)
{
    $dir_handle=opendir($path);
    while(false!==$file=readdir($dir_handle))
    {
        if($file=='.' || $file=='..')continue;
        // 
        echo str_repeat('&nbsp; ',$deep*4).$file."<br />";
        // 
        if(is_dir($path.'./'.$file))
        {
            // 
            $func_name=__FUNCTION__;// 
            $func_name($path.'./'.$file,$deep+1);
        }
        
    }
}
readdiguo($path);
?>

그룹으로 귀속
<?php
$path="E:/php";
$list=readdirQiantao($path);
foreach ($list as $first_key=>$first)
{
    echo $first_key."=".$first["name"]."<br />";
    if($first["type"]=='file')continue;
    foreach ($first["nested"] as $two_key=>$two)
    {
        echo "&nbsp;".$two_key."=".$two["name"]."<br />";
    }
}
function readdirQiantao($path)
{
    $nested=array();// 
    $dir_handle=opendir($path);
    while(false!=$file=readdir($dir_handle))
    {
        if($file=='.'||$file=="..")continue;
        
        // 
        $fileinfo=array();
        $fileinfo["name"]=$file;
        
        // 
        if(is_dir($path.'/'.$file))
        {
            // 
            $fileinfo["type"]="dir";
            $func_name=__FUNCTION__;
            $fileinfo["nested"]=$func_name($path."/".$file);
        }else
        {
            // 
            $fileinfo["type"]="file";
        }
        // 
        $nested[]=$fileinfo;
    }
    closedir($dir_handle);
    return $nested;
    
}
?>

파일 삭제 반복
<?php
$path="./pp";
var_dump(reDirs($path));
function reDirs($path)
{
    $dir_handle=opendir($path);
    while(false!=$file=readdir($dir_handle))
    {
        if($file=='.'||$file=='..')continue;
        
        // 
        if(is_dir($path.'/'.$file))
        {
            // 
            $func_name=__FUNCTION__;
            $func_name($path.'/'.$file);
        }else
        {
            // 
            unlink($path.'/'.$file);
        }
    }
    closedir($dir_handle);
    return rmdir($path);// 
}
?>

좋은 웹페이지 즐겨찾기