-
- /**
- * 파일 디렉터리 작업 클래스
- * 편집기: bbs.it-home.org
- * 예:
- * $fileutil = new fileDirUtil()
- * $fileutil->createDir( 'a/1/2/3'); 폴더 생성 테스트 폴더 생성 a/1/2/3
- * $fileutil->createFile('b/1/2/3') 생성 테스트 b/1/2/ 폴더 아래 3개 파일
- * $fileutil->createFile('b/1/2/3.txt'); b/1/2/에 있는 생성 파일 테스트 file
- * $fileutil->writeFile('b/1/2/3.txt','this is what i write!') 폴더 아래에 3.exe 파일을 생성합니다.
- * $arr = $fileutil->readFile2array('example/mysql.txt')
- * $arr = $fileutil->readsFile('example/mysql.txt')
- * $ size=$ fileutil->bitSize($fileutil->getDirSize("example")); 파일 또는 디렉터리 크기 가져오기
- * $fileutil->copyDir('b','d/e' ); 파일 복사 테스트 폴더에 d/e 폴더를 만들고 b 폴더의 내용을 여기에 복사합니다
- * $fileutil->copyFile('b/1/2/3.exe','b/ b/3.exe' ); 파일 복사를 테스트하여 b/b 폴더를 만들고 b/1/2 폴더에 있는 3.exe 파일을 해당 폴더에 복사합니다.
- * $fileutil->moveDir('a/' ,'b/c'); 이동 폴더를 테스트하여 b/c 폴더를 생성하고 a 폴더의 내용을 해당 폴더로 이동한 후 a 폴더를 삭제합니다
- * $fileutil->moveFile('b/1/ 2/3 .exe','b/d/3.exe'); 파일 이동을 테스트하여 b/d 폴더를 만들고 b/1/2의 3.exe를 해당 폴더로 이동합니다.
- * $fileutil->unlinkFile ('b/d/3.exe'); b/d/3.exe 파일을 삭제하려면 테스트하세요
- * $fileutil->unlinkDir('d'); d 폴더 삭제
- * $list = $fileutil->dirList("E:example"); 테스트 목록 폴더에는 디렉터리의 모든 파일이 나열됩니다.
- * $list = $fileutil->dirTree("/ "); 테스트 목록 폴더 트리는 디렉터리에 있는 모든 파일의 직접적인 트리 관계를 나열합니다
- */
- class fileDirUtil {
- /**
- * 폴더 만들기
- *
- * @param string $aimUrl
- * @return viod
- */
- function createDir($aimUrl, $mode = 0777) {
- $aimUrl = str_replace ( '', '/', $aimUrl );
- $aimDir = '';
- $arr = 폭발( '/', $aimUrl );
- foreach ( $arr as $str ) {
- $aimDir .= $str . '/';
- if (!file_exists ( $aimDir )) {
- mkdir ( $aimDir, $mode );
- }
- }
- }
- /**
- * 파일 생성
- *
- * @param string $aimUrl
- * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
- * @return boolean
- */
- function createFile($aimUrl, $overWrite = false) {
- if (file_exists ( $aimUrl ) && $ overWrite == false) {
- return false;
- } elseif (file_exists ( $aimUrl ) && $overWrite == true) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = 디렉토리 이름( $aimUrl );
- $this->createDir( $aimDir );
- 터치( $aimUrl );
- true를 반환합니다.
- }
- /**
- * 폴더 이동
- *
- * @param string $oldDir
- * @param string $aimDir
- * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
- * @ 반환 부울
- */
- function moveDir($oldDir, $aimDir, $overWrite = false) {
- $aimDir = str_replace ( '', '/', $aimDir );
- $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
- $oldDir = str_replace ( '', '/', $oldDir );
- $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir . '/';
- if (!is_dir ( $oldDir )) {
- return false;
- }
- if (!file_exists ( $aimDir )) {
- $this->createDir ( $aimDir );
- }
- @$dirHandle = opendir ( $oldDir );
- if (! $dirHandle) {
- false를 반환합니다.
- }
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 계속하세요;
- }
- if (!is_dir ( $oldDir . $file )) {
- $this->moveFile ( $oldDir . $file, $aimDir . $file, $overWrite );
- } else {
- $this->moveDir ( $oldDir . $file, $aimDir . $file, $overWrite );
- }
- }
- closeir( $dirHandle );
- rmdir( $oldDir )을 반환합니다.
- }
- /**
- * 파일 이동
- *
- * @param string $fileUrl
- * @param string $aimUrl
- * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
- * @return 부울
- */
- function moveFile($fileUrl, $aimUrl, $overWrite = false) {
- if (!file_exists ( $fileUrl )) {
- return false;
- }
- if (file_exists ( $aimUrl ) && $overWrite = false) {
- return false;
- } elseif (file_exists ( $aimUrl ) && $overWrite = true) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = 디렉토리 이름( $aimUrl );
- $this->createDir( $aimDir );
- 이름 바꾸기( $fileUrl, $aimUrl );
- true를 반환합니다.
- }
- /**
- * 폴더 삭제
- *
- * @param string $aimDir
- * @return boolean
- */
- function unlinkDir($aimDir) {
- $aimDir = str_replace ( '', '/', $aimDir );
- $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
- if (!is_dir ( $aimDir )) {
- return false;
- }
- $dirHandle = opendir ( $aimDir );
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 계속;
- }
- if (!is_dir ( $aimDir . $file )) {
- $this->unlinkFile ( $aimDir . $file );
- } else {
- $this->unlinkDir ( $aimDir . $file );
- }
- }
- closeir( $dirHandle );
- rmdir( $aimDir )을 반환합니다.
- }
- /**
- * 파일 삭제
- *
- * @param string $aimUrl
- * @return boolean
- */
- function unlinkFile($aimUrl) {
- if (file_exists ( $aimUrl )) {
- unlink ( $aimUrl );
- true를 반환합니다.
- } else {
- false를 반환합니다.
- }
- }
- /**
- * 폴더 복사
- *
- * @param string $oldDir
- * @param string $aimDir
- * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
- * @ 반환 부울
- */
- function copyDir($oldDir, $aimDir, $overWrite = false) {
- $aimDir = str_replace ( '', '/ ', $aimDir );
- $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
- $oldDir = str_replace ( '', '/', $oldDir );
- $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir . '/';
- if (!is_dir ( $oldDir )) {
- return false;
- }
- if (!file_exists ( $aimDir )) {
- $this->createDir ( $aimDir );
- }
- $dirHandle = opendir ( $oldDir );
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 계속;
- }
- if (!is_dir ( $oldDir . $file )) {
- $this->copyFile ( $oldDir . $file, $aimDir . $file, $overWrite );
- } else {
- $this->copyDir ( $oldDir . $file, $aimDir . $file, $overWrite );
- }
- }
- return closeir( $dirHandle );
- }
- /**
- * 파일 복사
- *
- * @param string $fileUrl
- * @param string $aimUrl
- * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
- * @return 부울
- */
- function copyFile($fileUrl, $aimUrl, $overWrite = false) {
- if (!file_exists ( $fileUrl )) {
- return 거짓;
- }
- if (file_exists ( $aimUrl ) && $overWrite == false) {
- return false;
- } elseif (file_exists ( $aimUrl ) && $overWrite == true) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = 디렉토리 이름( $aimUrl );
- $this->createDir( $aimDir );
- 복사( $fileUrl, $aimUrl );
- true를 반환합니다.
- }
- /**
- * 파일에 문자열 쓰기
- *
- * @param string $filename 파일 이름
- * @param boolean $str 쓸 문자 데이터
- */
- function writeFile($filename, $str) {
- if (function_exists ( file_put_contents )) {
- file_put_contents ( $filename, $str ) ;
- } else {
- $fp = fopen ( $filename, "wb" );
- fwrite ( $fp, $str );
- fclose( $fp );
- }
- }
- /**
- * 전체 파일 내용을 문자열로 읽어옵니다.
- *
- * @param string $filename filename
- * @return array
- */
- function readsFile($filename) {
- if (function_exists ( file_get_contents )) {
- return file_get_contents ( $filename );
- } else {
- $fp = fopen ( $filename, "rb" );
- $str = fread ( $fp, 파일 크기 ( $filename ) );
- fclose( $fp );
- $str을 반환합니다;
- }
- }
- /**
- * 파일 내용을 배열로 읽어옵니다.
- *
- * @param string $filename 파일 이름
- * @return 배열
- */
- function readFile2array($filename) {
- $file = 파일( $filename );
- $arr = 배열();
- foreach( $file as $value ) {
- $arr [] = 트림( $value );
- }
- $arr 반환;
- }
- /**
- * /로 변환
- *
- * @param string $path path
- * @return string path
- */
- function dirPath($path) {
- $path = str_replace ( '\', '/', $path );
- if (substr ( $path, - 1 ) != '/')
- $path = $path . '/';
- $path를 반환합니다.
- }
- /**
- * 디렉터리 아래의 모든 파일 인코딩 형식을 변환합니다.
- *
- * @param string $in_charset 원래 문자 집합
- * @param string $out_charset 대상 문자 집합
- * @param string $dir 디렉터리 주소
- * @param string $fileexts 변환된 파일 형식
- * @return string 원본 문자 집합과 대상 문자 집합이 동일하면 false를 반환하고, 그렇지 않으면 true를 반환합니다.
- */
- 함수 dirIconv($in_charset, $out_charset, $dir, $fileexts = 'php|html|htm|shtml|shtm|js|txt|xml' ) {
- if ($in_charset == $out_charset)
- return false;
- $list = $this->dirList ( $dir );
- foreach ( $list as $v ) {
- if (preg_match ( "/.($fileexts)/i", $v ) && is_file ( $v )) {
- file_put_contents ( $v, iconv ( $in_charset, $out_charset, file_get_contents ( $v ) ) );
- }
- }
- true를 반환합니다.
- }
- /**
- * 디렉토리에 있는 모든 파일 나열
- *
- * @param string $path path
- * @param string $exts Extension
- * @param array $list 추가된 파일 목록
- * @return array 조건을 만족하는 모든 파일
- */
- function dirList($path, $exts = '', $list = array()) {
- $path = $this->dirPath ($경로);
- $files = glob ( $path . '*' );
- foreach ( $files as $v ) {
- $fileext = $this->fileext ( $v );
- if (! $exts || preg_match ( "/.($exts)/i", $v )) {
- $list [] = $v;
- if (is_dir ( $v )) {
- $list = $this->dirList ( $v, $exts, $list );
- }
- }
- }
- return $list;
- }
- /**
- * 해당 디렉터리에 있는 모든 파일의 접근 및 수정 시간을 설정
- *
- * @param string $path path
- * @param int $mtime 수정 시간
- * @param int $atime access Time
- * @return 배열은 디렉터리가 아니면 false를 반환하고, 그렇지 않으면 true를 반환합니다.
- */
- function dirTouch($path, $mtime = TIME, $atime = TIME) {
- if (!is_dir ( $path ))
- 거짓을 반환;
- $path = $this->dirPath ( $path );
- if (!is_dir ( $path ))
- touch ( $path, $mtime, $atime );
- $files = glob ( $path . '*' );
- foreach ( $files as $v ) {
- is_dir ( $v ) ? $this->dirTouch( $v, $mtime, $atime ) : 터치( $v, $mtime, $atime );
- }
- true를 반환합니다.
- }
- /**
- * 디렉터리 목록
- *
- * @param string $dir 경로
- * @param int $parentid 부모 ID
- * @param array 디렉터리에 전달된 $dirs
- * @return 배열 디렉터리 및 하위 디렉터리 목록을 반환합니다
- */
- function dirTree($dir, $parentid = 0, $dirs = array()) {
- 전역 $id;
- if ($parentid == 0)
- $id = 0;
- $list = glob ( $dir . '*' );
- foreach ( $list as $v ) {
- if (is_dir ( $v )) {
- $id ;
- $dirs [$id] = 배열('id' => $id, 'parentid' => $parentid, 'name' => 기본 이름( $v ), 'dir' => $v .'/' );
- $dirs = $this->dirTree ( $v . '/', $id, $dirs );
- }
- }
- return $dirs;
- }
- /**
- * 디렉터리 목록
- *
- * @param string $dir path
- * @return array 디렉터리 목록 반환
- */
- function dirNodeTree($dir) {
- $d = dir ( $dir );
- $dirs = 배열();
- while ( false !== ($entry = $d->read ()) ) {
- if ($entry != '.' and $entry != '..' and is_dir ( $dir . '/' . $entry )) {
- $dirs[] = $entry;
- }
- }
- return $dirs;
- }
- /**
- * 디렉터리 크기 가져오기
- *
- * @param string $dirname 디렉터리
- * @return 문자열 비트 B
- */
- function getDirSize($dirname) {
- if (!file_exists ( $dirname ) 또는 !is_dir ( $dirname ))
- return false;
- if (! $handle = opendir ( $dirname ))
- return false;
- $크기 = 0;
- while ( false !== ($file = readdir ( $handle )) ) {
- if ($file == "." or $file == "..")
- 계속;
- $file = $dirname . "/" . $파일;
- if (is_dir ( $file )) {
- $size = $this->getDirSize ( $file );
- } else {
- $size = 파일 크기( $file );
- }
-
- }
- closeir ( $handle );
- $size를 반환합니다.
- }
- /**
- * 바이트를 Kb 또는 Mb로 변환...
- * $size 매개변수는 바이트 크기입니다.
- */
- function bitSize($size) {
- if (! preg_match ( "/^[0-9] $/", $num ))
- 0을 반환합니다.
- $type = array ("B", "KB", "MB", "GB", "TB", "PB" );
-
- $j = 0;
- while ( $num >= 1024 ) {
- if ($j >= 5)
- return $num . $유형 [$j];
- $num = $num / 1024;
- $j ;
- }
- $num을 반환합니다. $유형 [$j];
- }
- /**
- * 파일 이름 접미사 가져오기
- *
- * @param string $filename
- * @return string
- */
- function fileext($filename) {
- return addlashes ( Trim ( substr ( strrchr ( $filename, '.' ), 1, 10 ) ) );
- }
- }
- ?>
复代码
|