특정 디렉토리에 모든 파일 삭제 또는 특정 디렉토리에 특정 확장자 파일만 삭제 > 기술자료 | 해피정닷컴

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

본문 바로가기

사이트 내 전체검색

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

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

페이지 정보


본문

<?php
// 특정디렉토리에 모든 파일 삭제 
$del_directory = "/home/happyjung/www/upload"; // 절대경로
$del_handle = opendir($del_directory);
while ($del_file = readdir($del_handle)) {
    @unlink($del_directory."/".$del_file);
}
closedir($del_handle);
?>

<?php
// 특정 디렉토리에 특정 확장자만 삭제
$del_directory = "/home/happyjung/www/upload"; // 절대경로
$del_handle = opendir($del_directory);
while ($del_file = readdir($del_handle)) {
    $fileInfo = pathinfo($del_file);
    $fileExt = $fileInfo['extension']; // 파일의 확장자를 구함
    if($fileExt == "jpg") {
        @unlink($del_directory."/".$del_file);
    }
}
closedir($del_handle);
?>

<?php
// 특정 디렉토리와 하부파일 삭제 
$del_directory = "/home/happyjung/www/upload"; // 절대경로
$del_handle = opendir($del_directory);
while ($del_file = readdir($del_handle)) {
    @unlink($del_directory."/".$del_file);
}
closedir($del_handle);
rmdir($del_directory);
?>


참고자료
http://fendee.egloos.com/1762714
http://www.php.net/manual/en/function.rmdir.php
http://habonyphp.com/33
http://chongmoa.com/php/28122

댓글목록

등록된 댓글이 없습니다.


Total 196건 5 페이지
  • RSS
기술자료 목록
열람
PHP   20426  2013-08-22 17:44 ~ 2019-10-06 10:37  
115
PHP   22987  2013-08-22 13:35 ~ 2021-08-20 19:00  
114
PHP   21556  2013-06-20 05:00  
113
PHP   18032  2013-06-19 00:29  
112
PHP   23382  2013-05-30 21:27  
111
PHP   18740  2013-05-28 14:27  
110
PHP   17201  2013-05-16 13:13  
109
PHP   17781  2013-05-11 21:40  
108
PHP   17522  2013-04-17 23:13 ~ 2021-05-18 16:40  
107
PHP   32600  2013-04-16 02:21 ~ 2020-02-11 20:22  
106
PHP   17082  2013-03-26 01:49  
105
PHP   18891  2013-02-20 12:09 ~ 2021-07-15 07:19  
104
PHP   19706  2012-10-28 23:34  
103
PHP   18762  2012-06-13 03:34  
102
PHP   46041  2012-04-05 00:46  
101
PHP   42940  2012-04-04 23:04  
100
PHP   17526  2012-04-04 22:15 ~ 2021-01-18 12:04  
99
PHP   32098  2012-03-31 17:48 ~ 2018-12-17 14:52  
98
PHP   18850  2012-03-31 11:03  
97
PHP   92697  2012-03-26 22:22  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.