php遞迴複製檔案和目錄,該如何解決

來源:互聯網
上載者:User
php遞迴複製檔案和目錄
function del($path){
$handle = opendir($path);
readdir($handle);
readdir($handle);while(false !== ($file = readdir($handle))){
$file = $path."/".$file;

if(is_dir($file)){
del($file);
}else{
if(unlink($file)){
echo "檔案".$file."成功"."\r\n";
}else{
echo "檔案".$file."失敗"."\r\n";
}
}
}
closedir($handle);
if(rmdir($path)){
echo "目錄".$path."刪除成功"."\r\n";
}else{
echo "目錄".$path."刪除失敗"."\r\n";
}

}

del('d:/123');

?>

為什麼用兩次readdir($handle);?求解,詳細點,用一次為什麼出錯?



------解決方案--------------------
一個目錄下有兩個特殊目錄 . 和 .. ,代表本目錄和上級目錄,這兩個readdir($handle)就是把這個兩特殊目錄讀取後不用來跳過,這樣才能正確操作指定目錄下的檔案和子目錄的。
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.