直接上代碼php
public function delpath($path){ if($handle=opendir($path)){ while(false!==($file=readdir($handle))){ if ($file != "." && $file != "..") { @unlink($path."".$file); } } } }
其實主要的思路就是,首先獲取文件夾下的全部文件,並將其遍歷出來,固然我這個是在項目中已經提早知道我這個是文件,不是文件夾。在遍歷的同時再進行一一刪除。
code