[ php ] php로 디렉토리 삭제
페이지 정보
작성자 웹지기 댓글 0건 조회 5,285회 작성일 18-09-30 18:19본문
php 디렉토리와 하위 파일까지 한꺼번에 삭제하는 함수
[code]
// 사용시 모든 데이터가 날아가므로 주의를 요함(Recursive)
function LIB_removeAllData( $URL )
{
if( is_dir( $URL )) {
if( $dh = opendir( $URL ) ) {
while( ( $file = readdir( $dh ) ) !== false ) {
if( $file == '.' || $file == ".." ) continue;
if( filetype( $URL.$file ) == "dir" ) LIB_removeAllData( $URL.$file.'/' );
else @unlink( $URL.$file ); // 파일 삭제
}
@rmdir( $URL ); // 폴더 삭제
closedir( $dh );
}
}
}
[/code]
사용법
[code]
$dir = "/home/~~~";
LIB_removeAllData($dir);
[/code]
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.