PHP로 구현된 파일 디렉터리 작업 클래스

WBOY
풀어 주다: 2016-07-25 08:56:08
원래의
755명이 탐색했습니다.
  1. /**
  2. * 파일 디렉터리 작업 클래스
  3. * 편집기: bbs.it-home.org
  4. * 예:
  5. * $fileutil = new fileDirUtil()
  6. * $fileutil->createDir( 'a/1/2/3'); 폴더 생성 테스트 폴더 생성 a/1/2/3
  7. * $fileutil->createFile('b/1/2/3') 생성 테스트 b/1/2/ 폴더 아래 3개 파일
  8. * $fileutil->createFile('b/1/2/3.txt'); b/1/2/에 있는 생성 파일 테스트 file
  9. * $fileutil->writeFile('b/1/2/3.txt','this is what i write!') 폴더 아래에 3.exe 파일을 생성합니다.
  10. * $arr = $fileutil->readFile2array('example/mysql.txt')
  11. * $arr = $fileutil->readsFile('example/mysql.txt')
  12. * $ size=$ fileutil->bitSize($fileutil->getDirSize("example")); 파일 또는 디렉터리 크기 가져오기
  13. * $fileutil->copyDir('b','d/e' ); 파일 복사 테스트 폴더에 d/e 폴더를 만들고 b 폴더의 내용을 여기에 복사합니다
  14. * $fileutil->copyFile('b/1/2/3.exe','b/ b/3.exe' ); 파일 복사를 테스트하여 b/b 폴더를 만들고 b/1/2 폴더에 있는 3.exe 파일을 해당 폴더에 복사합니다.
  15. * $fileutil->moveDir('a/' ,'b/c'); 이동 폴더를 테스트하여 b/c 폴더를 생성하고 a 폴더의 내용을 해당 폴더로 이동한 후 a 폴더를 삭제합니다
  16. * $fileutil->moveFile('b/1/ 2/3 .exe','b/d/3.exe'); 파일 이동을 테스트하여 b/d 폴더를 만들고 b/1/2의 3.exe를 해당 폴더로 이동합니다.
  17. * $fileutil->unlinkFile ('b/d/3.exe'); b/d/3.exe 파일을 삭제하려면 테스트하세요
  18. * $fileutil->unlinkDir('d'); d 폴더 삭제
  19. * $list = $fileutil->dirList("E:example"); 테스트 목록 폴더에는 디렉터리의 모든 파일이 나열됩니다.
  20. * $list = $fileutil->dirTree("/ "); 테스트 목록 폴더 트리는 디렉터리에 있는 모든 파일의 직접적인 트리 관계를 나열합니다
  21. */
  22. class fileDirUtil {
  23. /**
  24. * 폴더 만들기
  25. *
  26. * @param string $aimUrl
  27. * @return viod
  28. */
  29. function createDir($aimUrl, $mode = 0777) {
  30. $aimUrl = str_replace ( '', '/', $aimUrl );
  31. $aimDir = '';
  32. $arr = 폭발( '/', $aimUrl );
  33. foreach ( $arr as $str ) {
  34. $aimDir .= $str . '/';
  35. if (!file_exists ( $aimDir )) {
  36. mkdir ( $aimDir, $mode );
  37. }
  38. }
  39. }
  40. /**
  41. * 파일 생성
  42. *
  43. * @param string $aimUrl
  44. * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
  45. * @return boolean
  46. */
  47. function createFile($aimUrl, $overWrite = false) {
  48. if (file_exists ( $aimUrl ) && $ overWrite == false) {
  49. return false;
  50. } elseif (file_exists ( $aimUrl ) && $overWrite == true) {
  51. $this->unlinkFile ( $aimUrl );
  52. }
  53. $aimDir = 디렉토리 이름( $aimUrl );
  54. $this->createDir( $aimDir );
  55. 터치( $aimUrl );
  56. true를 반환합니다.
  57. }
  58. /**
  59. * 폴더 이동
  60. *
  61. * @param string $oldDir
  62. * @param string $aimDir
  63. * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
  64. * @ 반환 부울 ​​
  65. */
  66. function moveDir($oldDir, $aimDir, $overWrite = false) {
  67. $aimDir = str_replace ( '', '/', $aimDir );
  68. $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
  69. $oldDir = str_replace ( '', '/', $oldDir );
  70. $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir . '/';
  71. if (!is_dir ( $oldDir )) {
  72. return false;
  73. }
  74. if (!file_exists ( $aimDir )) {
  75. $this->createDir ( $aimDir );
  76. }
  77. @$dirHandle = opendir ( $oldDir );
  78. if (! $dirHandle) {
  79. false를 반환합니다.
  80. }
  81. while ( false !== ($file = readdir ( $dirHandle )) ) {
  82. if ($file == '.' || $file == '..') {
  83. 계속하세요;
  84. }
  85. if (!is_dir ( $oldDir . $file )) {
  86. $this->moveFile ( $oldDir . $file, $aimDir . $file, $overWrite );
  87. } else {
  88. $this->moveDir ( $oldDir . $file, $aimDir . $file, $overWrite );
  89. }
  90. }
  91. closeir( $dirHandle );
  92. rmdir( $oldDir )을 반환합니다.
  93. }
  94. /**
  95. * 파일 이동
  96. *
  97. * @param string $fileUrl
  98. * @param string $aimUrl
  99. * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
  100. * @return 부울
  101. */
  102. function moveFile($fileUrl, $aimUrl, $overWrite = false) {
  103. if (!file_exists ( $fileUrl )) {
  104. return false;
  105. }
  106. if (file_exists ( $aimUrl ) && $overWrite = false) {
  107. return false;
  108. } elseif (file_exists ( $aimUrl ) && $overWrite = true) {
  109. $this->unlinkFile ( $aimUrl );
  110. }
  111. $aimDir = 디렉토리 이름( $aimUrl );
  112. $this->createDir( $aimDir );
  113. 이름 바꾸기( $fileUrl, $aimUrl );
  114. true를 반환합니다.
  115. }
  116. /**
  117. * 폴더 삭제
  118. *
  119. * @param string $aimDir
  120. * @return boolean
  121. */
  122. function unlinkDir($aimDir) {
  123. $aimDir = str_replace ( '', '/', $aimDir );
  124. $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
  125. if (!is_dir ( $aimDir )) {
  126. return false;
  127. }
  128. $dirHandle = opendir ( $aimDir );
  129. while ( false !== ($file = readdir ( $dirHandle )) ) {
  130. if ($file == '.' || $file == '..') {
  131. 계속;
  132. }
  133. if (!is_dir ( $aimDir . $file )) {
  134. $this->unlinkFile ( $aimDir . $file );
  135. } else {
  136. $this->unlinkDir ( $aimDir . $file );
  137. }
  138. }
  139. closeir( $dirHandle );
  140. rmdir( $aimDir )을 반환합니다.
  141. }
  142. /**
  143. * 파일 삭제
  144. *
  145. * @param string $aimUrl
  146. * @return boolean
  147. */
  148. function unlinkFile($aimUrl) {
  149. if (file_exists ( $aimUrl )) {
  150. unlink ( $aimUrl );
  151. true를 반환합니다.
  152. } else {
  153. false를 반환합니다.
  154. }
  155. }
  156. /**
  157. * 폴더 복사
  158. *
  159. * @param string $oldDir
  160. * @param string $aimDir
  161. * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
  162. * @ 반환 부울 ​​
  163. */
  164. function copyDir($oldDir, $aimDir, $overWrite = false) {
  165. $aimDir = str_replace ( '', '/ ', $aimDir );
  166. $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir . '/';
  167. $oldDir = str_replace ( '', '/', $oldDir );
  168. $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir . '/';
  169. if (!is_dir ( $oldDir )) {
  170. return false;
  171. }
  172. if (!file_exists ( $aimDir )) {
  173. $this->createDir ( $aimDir );
  174. }
  175. $dirHandle = opendir ( $oldDir );
  176. while ( false !== ($file = readdir ( $dirHandle )) ) {
  177. if ($file == '.' || $file == '..') {
  178. 계속;
  179. }
  180. if (!is_dir ( $oldDir . $file )) {
  181. $this->copyFile ( $oldDir . $file, $aimDir . $file, $overWrite );
  182. } else {
  183. $this->copyDir ( $oldDir . $file, $aimDir . $file, $overWrite );
  184. }
  185. }
  186. return closeir( $dirHandle );
  187. }
  188. /**
  189. * 파일 복사
  190. *
  191. * @param string $fileUrl
  192. * @param string $aimUrl
  193. * @param boolean $overWrite 이 매개변수는 원본 파일을 덮어쓸지 여부를 제어합니다.
  194. * @return 부울
  195. */
  196. function copyFile($fileUrl, $aimUrl, $overWrite = false) {
  197. if (!file_exists ( $fileUrl )) {
  198. return 거짓;
  199. }
  200. if (file_exists ( $aimUrl ) && $overWrite == false) {
  201. return false;
  202. } elseif (file_exists ( $aimUrl ) && $overWrite == true) {
  203. $this->unlinkFile ( $aimUrl );
  204. }
  205. $aimDir = 디렉토리 이름( $aimUrl );
  206. $this->createDir( $aimDir );
  207. 복사( $fileUrl, $aimUrl );
  208. true를 반환합니다.
  209. }
  210. /**
  211. * 파일에 문자열 쓰기
  212. *
  213. * @param string $filename 파일 이름
  214. * @param boolean $str 쓸 문자 데이터
  215. */
  216. function writeFile($filename, $str) {
  217. if (function_exists ( file_put_contents )) {
  218. file_put_contents ( $filename, $str ) ;
  219. } else {
  220. $fp = fopen ( $filename, "wb" );
  221. fwrite ( $fp, $str );
  222. fclose( $fp );
  223. }
  224. }
  225. /**
  226. * 전체 파일 내용을 문자열로 읽어옵니다.
  227. *
  228. * @param string $filename filename
  229. * @return array
  230. */
  231. function readsFile($filename) {
  232. if (function_exists ( file_get_contents )) {
  233. return file_get_contents ( $filename );
  234. } else {
  235. $fp = fopen ( $filename, "rb" );
  236. $str = fread ( $fp, 파일 크기 ( $filename ) );
  237. fclose( $fp );
  238. $str을 반환합니다;
  239. }
  240. }
  241. /**
  242. * 파일 내용을 배열로 읽어옵니다.
  243. *
  244. * @param string $filename 파일 이름
  245. * @return 배열
  246. */
  247. function readFile2array($filename) {
  248. $file = 파일( $filename );
  249. $arr = 배열();
  250. foreach( $file as $value ) {
  251. $arr [] = 트림( $value );
  252. }
  253. $arr 반환;
  254. }
  255. /**
  256. * /로 변환
  257. *
  258. * @param string $path path
  259. * @return string path
  260. */
  261. function dirPath($path) {
  262. $path = str_replace ( '\', '/', $path );
  263. if (substr ( $path, - 1 ) != '/')
  264. $path = $path . '/';
  265. $path를 반환합니다.
  266. }
  267. /**
  268. * 디렉터리 아래의 모든 파일 인코딩 형식을 변환합니다.
  269. *
  270. * @param string $in_charset 원래 문자 집합
  271. * @param string $out_charset 대상 문자 집합
  272. * @param string $dir 디렉터리 주소
  273. * @param string $fileexts 변환된 파일 형식
  274. * @return string 원본 문자 집합과 대상 문자 집합이 동일하면 false를 반환하고, 그렇지 않으면 true를 반환합니다.
  275. */
  276. 함수 dirIconv($in_charset, $out_charset, $dir, $fileexts = 'php|html|htm|shtml|shtm|js|txt|xml' ) {
  277. if ($in_charset == $out_charset)
  278. return false;
  279. $list = $this->dirList ( $dir );
  280. foreach ( $list as $v ) {
  281. if (preg_match ( "/.($fileexts)/i", $v ) && is_file ( $v )) {
  282. file_put_contents ( $v, iconv ( $in_charset, $out_charset, file_get_contents ( $v ) ) );
  283. }
  284. }
  285. true를 반환합니다.
  286. }
  287. /**
  288. * 디렉토리에 있는 모든 파일 나열
  289. *
  290. * @param string $path path
  291. * @param string $exts Extension
  292. * @param array $list 추가된 파일 목록
  293. * @return array 조건을 만족하는 모든 파일
  294. */
  295. function dirList($path, $exts = '', $list = array()) {
  296. $path = $this->dirPath ($경로);
  297. $files = glob ( $path . '*' );
  298. foreach ( $files as $v ) {
  299. $fileext = $this->fileext ( $v );
  300. if (! $exts || preg_match ( "/.($exts)/i", $v )) {
  301. $list [] = $v;
  302. if (is_dir ( $v )) {
  303. $list = $this->dirList ( $v, $exts, $list );
  304. }
  305. }
  306. }
  307. return $list;
  308. }
  309. /**
  310. * 해당 디렉터리에 있는 모든 파일의 접근 및 수정 시간을 설정
  311. *
  312. * @param string $path path
  313. * @param int $mtime 수정 시간
  314. * @param int $atime access Time
  315. * @return 배열은 디렉터리가 아니면 false를 반환하고, 그렇지 않으면 true를 반환합니다.
  316. */
  317. function dirTouch($path, $mtime = TIME, $atime = TIME) {
  318. if (!is_dir ( $path ))
  319. 거짓을 반환;
  320. $path = $this->dirPath ( $path );
  321. if (!is_dir ( $path ))
  322. touch ( $path, $mtime, $atime );
  323. $files = glob ( $path . '*' );
  324. foreach ( $files as $v ) {
  325. is_dir ( $v ) ? $this->dirTouch( $v, $mtime, $atime ) : 터치( $v, $mtime, $atime );
  326. }
  327. true를 반환합니다.
  328. }
  329. /**
  330. * 디렉터리 목록
  331. *
  332. * @param string $dir 경로
  333. * @param int $parentid 부모 ID
  334. * @param array 디렉터리에 전달된 $dirs
  335. * @return 배열 디렉터리 및 하위 디렉터리 목록을 반환합니다
  336. */
  337. function dirTree($dir, $parentid = 0, $dirs = array()) {
  338. 전역 $id;
  339. if ($parentid == 0)
  340. $id = 0;
  341. $list = glob ( $dir . '*' );
  342. foreach ( $list as $v ) {
  343. if (is_dir ( $v )) {
  344. $id ;
  345. $dirs [$id] = 배열('id' => $id, 'parentid' => $parentid, 'name' => 기본 이름( $v ), 'dir' => $v .'/' );
  346. $dirs = $this->dirTree ( $v . '/', $id, $dirs );
  347. }
  348. }
  349. return $dirs;
  350. }
  351. /**
  352. * 디렉터리 목록
  353. *
  354. * @param string $dir path
  355. * @return array 디렉터리 목록 반환
  356. */
  357. function dirNodeTree($dir) {
  358. $d = dir ( $dir );
  359. $dirs = 배열();
  360. while ( false !== ($entry = $d->read ()) ) {
  361. if ($entry != '.' and $entry != '..' and is_dir ( $dir . '/' . $entry )) {
  362. $dirs[] = $entry;
  363. }
  364. }
  365. return $dirs;
  366. }
  367. /**
  368. * 디렉터리 크기 가져오기
  369. *
  370. * @param string $dirname 디렉터리
  371. * @return 문자열 비트 B
  372. */
  373. function getDirSize($dirname) {
  374. if (!file_exists ( $dirname ) 또는 !is_dir ( $dirname ))
  375. return false;
  376. if (! $handle = opendir ( $dirname ))
  377. return false;
  378. $크기 = 0;
  379. while ( false !== ($file = readdir ( $handle )) ) {
  380. if ($file == "." or $file == "..")
  381. 계속;
  382. $file = $dirname . "/" . $파일;
  383. if (is_dir ( $file )) {
  384. $size = $this->getDirSize ( $file );
  385. } else {
  386. $size = 파일 크기( $file );
  387. }
  388. }
  389. closeir ( $handle );
  390. $size를 반환합니다.
  391. }
  392. /**
  393. * 바이트를 Kb 또는 Mb로 변환...
  394. * $size 매개변수는 바이트 크기입니다.
  395. */
  396. function bitSize($size) {
  397. if (! preg_match ( "/^[0-9] $/", $num ))
  398. 0을 반환합니다.
  399. $type = array ("B", "KB", "MB", "GB", "TB", "PB" );
  400. $j = 0;
  401. while ( $num >= 1024 ) {
  402. if ($j >= 5)
  403. return $num . $유형 [$j];
  404. $num = $num / 1024;
  405. $j ;
  406. }
  407. $num을 반환합니다. $유형 [$j];
  408. }
  409. /**
  410. * 파일 이름 접미사 가져오기
  411. *
  412. * @param string $filename
  413. * @return string
  414. */
  415. function fileext($filename) {
  416. return addlashes ( Trim ( substr ( strrchr ( $filename, '.' ), 1, 10 ) ) );
  417. }
  418. }
  419. ?>
复代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿