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

본문 바로가기
사이트 내 전체검색

php

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

페이지 정보

작성자 서방님 댓글 0건 조회 119회 작성일 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);
?>














댓글목록

등록된 댓글이 없습니다.

Total 612건 16 페이지
게시물 검색

회원로그인

접속자집계

오늘
142
어제
163
최대
1,347
전체
154,676
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.