FileSystem.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library;
  13. use catcher\exceptions\FiledNotFoundException;
  14. use Symfony\Component\Finder\Finder;
  15. class FileSystem
  16. {
  17. /**
  18. * 文件是否存在
  19. *
  20. * @param string $path
  21. * @return bool
  22. */
  23. public function exists($path)
  24. {
  25. return file_exists($path);
  26. }
  27. /**
  28. * 获取文件内容
  29. *
  30. * @param string $path
  31. * @param bool $lock
  32. * @return string
  33. **/
  34. public function get($path, $lock = false)
  35. {
  36. if ($this->isFile($path)) {
  37. return $lock ? $this->sharedGet($path) : file_get_contents($path);
  38. }
  39. throw new FiledNotFoundException("File does not exist at path {$path}");
  40. }
  41. /**
  42. * 安全获取文件内容
  43. *
  44. * @param string $path
  45. * @return string
  46. */
  47. public function sharedGet($path)
  48. {
  49. $contents = '';
  50. $handle = fopen($path, 'rb');
  51. if ($handle) {
  52. try {
  53. if (flock($handle, LOCK_SH)) {
  54. clearstatcache(true, $path);
  55. $contents = fread($handle, $this->size($path) ?: 1);
  56. flock($handle, LOCK_UN);
  57. }
  58. } finally {
  59. fclose($handle);
  60. }
  61. }
  62. return $contents;
  63. }
  64. /**
  65. * 加载文件返回
  66. *
  67. * @param string $path
  68. * @return mixed
  69. *
  70. * @throws FiledNotFoundException
  71. */
  72. public function getRequire($path)
  73. {
  74. if ($this->isFile($path)) {
  75. return require $path;
  76. }
  77. throw new FiledNotFoundException("File does not exist at path {$path}");
  78. }
  79. /**
  80. * 加载文件
  81. *
  82. * @param string $file
  83. * @return mixed
  84. */
  85. public function requireOnce($file)
  86. {
  87. require_once $file;
  88. }
  89. /**
  90. * hash
  91. *
  92. * @param string $path
  93. * @return string
  94. */
  95. public function hash($path)
  96. {
  97. return md5_file($path);
  98. }
  99. /**
  100. * 写入文件
  101. *
  102. * @param string $path
  103. * @param string $contents
  104. * @param bool $lock
  105. * @return int|bool
  106. */
  107. public function put($path, $contents, $lock = false)
  108. {
  109. return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
  110. }
  111. /**
  112. * 替换
  113. *
  114. * @param string $path
  115. * @param string $content
  116. * @return void
  117. */
  118. public function replace($path, $content)
  119. {
  120. clearstatcache(true, $path);
  121. $path = realpath($path) ?: $path;
  122. $tempPath = tempnam(dirname($path), basename($path));
  123. chmod($tempPath, 0777 - umask());
  124. file_put_contents($tempPath, $content);
  125. rename($tempPath, $path);
  126. }
  127. /**
  128. * 重制文件
  129. *
  130. * @param string $path
  131. * @param string $data
  132. * @return int
  133. */
  134. public function prepend($path, $data)
  135. {
  136. if ($this->exists($path)) {
  137. return $this->put($path, $data.$this->get($path));
  138. }
  139. return $this->put($path, $data);
  140. }
  141. /**
  142. * 追加文件
  143. *
  144. * @param string $path
  145. * @param string $data
  146. * @return int
  147. */
  148. public function append($path, $data)
  149. {
  150. return file_put_contents($path, $data, FILE_APPEND);
  151. }
  152. /**
  153. * 设置权限
  154. *
  155. * @param string $path
  156. * @param int|null $mode
  157. * @return mixed
  158. */
  159. public function chmod($path, $mode = null)
  160. {
  161. if ($mode) {
  162. return chmod($path, $mode);
  163. }
  164. return substr(sprintf('%o', fileperms($path)), -4);
  165. }
  166. /**
  167. * 删除文件
  168. *
  169. * @param string|array $paths
  170. * @return bool
  171. */
  172. public function delete($paths)
  173. {
  174. $paths = is_array($paths) ? $paths : func_get_args();
  175. $success = true;
  176. foreach ($paths as $path) {
  177. try {
  178. if (! @unlink($path)) {
  179. $success = false;
  180. }
  181. } catch (\ErrorException $e) {
  182. $success = false;
  183. }
  184. }
  185. return $success;
  186. }
  187. /**
  188. * 移动文件
  189. *
  190. * @param string $path
  191. * @param string $target
  192. * @return bool
  193. */
  194. public function move($path, $target)
  195. {
  196. return rename($path, $target);
  197. }
  198. /**
  199. * 复制文件
  200. *
  201. * @param string $path
  202. * @param string $target
  203. * @return bool
  204. */
  205. public function copy($path, $target)
  206. {
  207. return copy($path, $target);
  208. }
  209. /**
  210. *硬连接
  211. *
  212. * @param string $target
  213. * @param string $link
  214. * @return void|mixed
  215. */
  216. public function link($target, $link)
  217. {
  218. $isWin = strtolower(substr(PHP_OS, 0, 3)) === 'win';
  219. if (! $isWin) {
  220. return symlink($target, $link);
  221. }
  222. $mode = $this->isDirectory($target) ? 'J' : 'H';
  223. exec("mklink /{$mode} ".escapeshellarg($link).' '.escapeshellarg($target));
  224. }
  225. /**
  226. * file name
  227. *
  228. * @param string $path
  229. * @return string
  230. */
  231. public function name($path)
  232. {
  233. return pathinfo($path, PATHINFO_FILENAME);
  234. }
  235. /**
  236. * basename
  237. *
  238. * @param string $path
  239. * @return string
  240. */
  241. public function basename($path)
  242. {
  243. return pathinfo($path, PATHINFO_BASENAME);
  244. }
  245. /**
  246. * dirname
  247. *
  248. * @param string $path
  249. * @return string
  250. */
  251. public function dirname($path)
  252. {
  253. return pathinfo($path, PATHINFO_DIRNAME);
  254. }
  255. /**
  256. * 文件后缀
  257. *
  258. * @param string $path
  259. * @return string
  260. */
  261. public function extension($path)
  262. {
  263. return pathinfo($path, PATHINFO_EXTENSION);
  264. }
  265. /**
  266. * 文件类型
  267. *
  268. * @param string $path
  269. * @return string
  270. */
  271. public function type($path)
  272. {
  273. return filetype($path);
  274. }
  275. /**
  276. * mimeType
  277. *
  278. * @param string $path
  279. * @return string|false
  280. */
  281. public function mimeType($path)
  282. {
  283. return finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
  284. }
  285. /**
  286. * 文件大小
  287. *
  288. * @param string $path
  289. * @return int
  290. */
  291. public function size($path)
  292. {
  293. return filesize($path);
  294. }
  295. /**
  296. * 获取上次文件的修改时间
  297. *
  298. * @param string $path
  299. * @return int
  300. */
  301. public function lastModified($path)
  302. {
  303. return filemtime($path);
  304. }
  305. /**
  306. * 是否是文件夹.
  307. *
  308. * @param string $directory
  309. * @return bool
  310. */
  311. public function isDirectory($directory)
  312. {
  313. return is_dir($directory);
  314. }
  315. /**
  316. *是否可读
  317. *
  318. * @param string $path
  319. * @return bool
  320. */
  321. public function isReadable($path)
  322. {
  323. return is_readable($path);
  324. }
  325. /**
  326. * 是否可写
  327. *
  328. * @param string $path
  329. * @return bool
  330. */
  331. public function isWritable($path)
  332. {
  333. return is_writable($path);
  334. }
  335. /**
  336. * 是否是文件
  337. *
  338. * @param string $file
  339. * @return bool
  340. */
  341. public function isFile($file)
  342. {
  343. return is_file($file);
  344. }
  345. /**
  346. * 查找文件
  347. *
  348. * @param string $pattern
  349. * @param int $flags
  350. * @return array
  351. */
  352. public function glob($pattern, $flags = 0)
  353. {
  354. return glob($pattern, $flags);
  355. }
  356. /**
  357. * 查找目录所有文件
  358. *
  359. * @param string $directory
  360. * @param bool $hidden
  361. * @return \Symfony\Component\Finder\SplFileInfo[]
  362. */
  363. public function files($directory, $hidden = false)
  364. {
  365. return iterator_to_array(
  366. Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory)->depth(0)->sortByName(),
  367. false
  368. );
  369. }
  370. /**
  371. * 递归文件目录下所有文件
  372. *
  373. * @param string $directory
  374. * @param bool $hidden
  375. * @return \Symfony\Component\Finder\SplFileInfo[]
  376. */
  377. public function allFiles($directory, $hidden = false)
  378. {
  379. return iterator_to_array(Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory)->sortByName(),
  380. false
  381. );
  382. }
  383. /**
  384. * 文件目录下所有子目录
  385. *
  386. * @param string $directory
  387. * @return array
  388. */
  389. public function directories($directory)
  390. {
  391. $directories = [];
  392. foreach (Finder::create()->in($directory)->directories()->depth(0)->sortByName() as $dir) {
  393. $directories[] = $dir->getPathname();
  394. }
  395. return $directories;
  396. }
  397. /**
  398. * 创建目录
  399. *
  400. * @param string $path
  401. * @param int $mode
  402. * @param bool $recursive
  403. * @param bool $force
  404. * @return bool
  405. */
  406. public function makeDirectory($path, $mode = 0755, $recursive = false, $force = false)
  407. {
  408. if ($force) {
  409. return @mkdir($path, $mode, $recursive);
  410. }
  411. return mkdir($path, $mode, $recursive);
  412. }
  413. /**
  414. * 移动目录
  415. *
  416. * @param string $from
  417. * @param string $to
  418. * @param bool $overwrite
  419. * @return bool
  420. */
  421. public function moveDirectory($from, $to, $overwrite = false)
  422. {
  423. if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) {
  424. return false;
  425. }
  426. return @rename($from, $to) === true;
  427. }
  428. /**
  429. *复制目录
  430. *
  431. * @param string $directory
  432. * @param string $destination
  433. * @param int|null $options
  434. * @return bool
  435. */
  436. public function copyDirectory($directory, $destination, $options = null)
  437. {
  438. if (! $this->isDirectory($directory)) {
  439. return false;
  440. }
  441. $options = $options ?: \FilesystemIterator::SKIP_DOTS;
  442. if (! $this->isDirectory($destination)) {
  443. $this->makeDirectory($destination, 0777, true);
  444. }
  445. $items = new \FilesystemIterator($directory, $options);
  446. foreach ($items as $item) {
  447. $target = $destination.'/'.$item->getBasename();
  448. if ($item->isDir()) {
  449. $path = $item->getPathname();
  450. if (! $this->copyDirectory($path, $target, $options)) {
  451. return false;
  452. }
  453. }
  454. else {
  455. if (! $this->copy($item->getPathname(), $target)) {
  456. return false;
  457. }
  458. }
  459. }
  460. return true;
  461. }
  462. /**
  463. * 删除目录
  464. *
  465. * @param string $directory
  466. * @param bool $preserve
  467. * @return bool
  468. */
  469. public function deleteDirectory($directory, $preserve = false)
  470. {
  471. if (! $this->isDirectory($directory)) {
  472. return false;
  473. }
  474. $items = new \FilesystemIterator($directory);
  475. foreach ($items as $item) {
  476. if ($item->isDir() && ! $item->isLink()) {
  477. $this->deleteDirectory($item->getPathname());
  478. } else {
  479. $this->delete($item->getPathname());
  480. }
  481. }
  482. if (! $preserve) {
  483. @rmdir($directory);
  484. }
  485. return true;
  486. }
  487. /**
  488. * 删除目录下所有目录
  489. *
  490. * @param string $directory
  491. * @return bool
  492. */
  493. public function deleteDirectories($directory)
  494. {
  495. $allDirectories = $this->directories($directory);
  496. if (! empty($allDirectories)) {
  497. foreach ($allDirectories as $directoryName) {
  498. $this->deleteDirectory($directoryName);
  499. }
  500. return true;
  501. }
  502. return false;
  503. }
  504. /**
  505. * 清空目录
  506. *
  507. * @param string $directory
  508. * @return bool
  509. */
  510. public function cleanDirectory($directory)
  511. {
  512. return $this->deleteDirectory($directory, true);
  513. }
  514. }