특정 디렉토리에 모든 파일 삭제 또는 특정 디렉토리에 특정 확장자 파일만 삭제
페이지 정보
작성자 서방님 댓글 0건 조회 357회 작성일 16-06-22 14:12본문
<?// 특정디렉토리에 모든 파일 삭제$directory = "/www/upload";$handle = opendir($directory); // 절대경로while ($file = readdir($handle)) { @unlink($directory.$file);}closedir($handle);?><?// 특정 디렉토리에 특정 확장자만 삭제$directory = "/www/upload";$handle = opendir($directory); // 절대경로while ($file = readdir($handle)) { $fileInfo = pathinfo($file); $fileExt = $fileInfo['extension']; // 파일의 확장자를 구함 if($fileExt == "jpg") { @unlink($directory.$file); }}closedir($handle);?>댓글목록
등록된 댓글이 없습니다.
