폴더 및 파일 작업

3866 단어 파일 작업
// 
//
add by Helin function deldir($dir_path){ $dir=opendir($dir_path); while($file=readdir($dir)){ if($file!="." && $file!="..") { $fullpath=$dir_path."/".$file; if(!is_dir($fullpath)) {
            unlink($fullpath); } else {
            deldir($fullpath);
          } } }
closedir($dir); rmdir($dir_path); return true; }

 
// :
$dir
= '../xml_popup/'; $handle = opendir($dir."."); $code = ''; while(false !== ($file = readdir($handle)) ){ if($file != '.' && $file != '..'){ $code .= ','.$file; } } closedir($handle); $fp = @fopen('array_code.php',"wb"); fwrite($fp,$code); fclose($fp); echo 'ok';

좋은 웹페이지 즐겨찾기