FileSystem.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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\facade;
  13. use think\Facade;
  14. /**
  15. * @method static exists($path)
  16. * @method static sharedGet($path)
  17. * @method static requireOnce($file)
  18. * @method static hash($path)
  19. * @method static put($path, $contents, $lock = false)
  20. * @method static replace($path, $content)
  21. * @method static prepend($path, $data)
  22. * @method static append($path, $data)
  23. * @method static chmod($path, $mode = null)
  24. * @method static delete($paths)
  25. * @method static move($path, $target)
  26. * @method static copy($path, $target)
  27. * @method static link($target, $link)
  28. * @method static name($path)
  29. * @method static basename($path)
  30. * @method static dirname($path)
  31. * @method static extension($path)
  32. * @method static type($path)
  33. * @method static mimeType($path)
  34. * @method static size($path)
  35. * @method static lastModified($path)
  36. * @method static isDirectory($directory)
  37. * @method static isReadable($path)
  38. * @method static isWritable($path)
  39. * @method static isFile($file)
  40. * @method static glob($pattern, $flags = 0)
  41. * @method static files($directory, $hidden = false)
  42. * @method static allFiles($directory, $hidden = false)
  43. * @method static directories($directory)
  44. * @method static makeDirectory($path, $mode = 0755, $recursive = false, $force = false)
  45. * @method static moveDirectory($from, $to, $overwrite = false)
  46. * @method static copyDirectory($directory, $destination, $options = null)
  47. * @method static deleteDirectory($directory, $preserve = false)
  48. * @method static deleteDirectories($directory)
  49. * @method static cleanDirectory($directory)
  50. */
  51. class FileSystem extends Facade
  52. {
  53. protected static function getFacadeClass()
  54. {
  55. return \catcher\library\FileSystem::class;
  56. }
  57. }