특정 디렉토리에 모든 파일 삭제 또는 특정 디렉토리에 특정 확장자 파일만 삭제 > php

본문 바로가기

php

특정 디렉토리에 모든 파일 삭제 또는 특정 디렉토리에 특정 확장자 파일만 삭제

작성일 16-06-22 14:12

페이지 정보

작성자서방님 조회 530회 댓글 0건

본문

<?
// 특정디렉토리에 모든 파일 삭제
 
$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);
?>














댓글목록

등록된 댓글이 없습니다.

게시물 검색
Copyright © 서방님.kr All rights reserved.
PC 버전으로 보기