Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

File.class.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. <?php
  2. /**
  3. * Created by Green Studio.
  4. * File: File.class.php
  5. * User: Timothy Zhang
  6. * Date: 14-1-31
  7. * Time: 下午2:53
  8. */
  9. namespace Common\Util;
  10. use think\Storage;
  11. /**
  12. * Class File
  13. * @package Common\Util
  14. */
  15. class File
  16. {
  17. /**
  18. * 运行于 Sae 和 LAMP
  19. * @param $filename
  20. * @return bool
  21. */
  22. public static function file_exists($filename)
  23. {
  24. $Storage = new Storage();
  25. $Storage::connect();
  26. return $Storage::has($filename);
  27. }
  28. /**
  29. * 运行于 Sae 和 LAMP
  30. * @param $bytes
  31. * @return string
  32. */
  33. public static function byteFormat($bytes)
  34. {
  35. $size_text = array(" B", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
  36. return round($bytes / pow(1024, ($i = floor(log($bytes, 1024)))), 2) . $size_text[$i];
  37. }
  38. /**
  39. * @param $filename
  40. * @return string
  41. */
  42. static public function readFile($filename)
  43. {
  44. $content = '';
  45. $Storage = new Storage();
  46. $Storage::connect();
  47. @$content = $Storage::read($filename);
  48. return $content;
  49. }
  50. /**
  51. * @param $filename
  52. * @param $writetext
  53. * @param string $openmod
  54. * @return bool
  55. */
  56. public static function writeFile($filename, $writetext, $openmod = 'w')
  57. {
  58. if (@$fp = fopen($filename, $openmod)) {
  59. flock($fp, 2);
  60. fwrite($fp, $writetext);
  61. fclose($fp);
  62. return true;
  63. } else {
  64. return false;
  65. }
  66. }
  67. /**
  68. * @param $filename
  69. * @return bool
  70. */
  71. public static function delFile($filename)
  72. {
  73. $Storage = new Storage();
  74. $Storage::connect();
  75. return $Storage::unlink($filename);
  76. }
  77. /**
  78. * @param $path
  79. * @param bool $delDir
  80. * @return bool
  81. */
  82. public static function delAll($path, $delDir = false)
  83. {
  84. $handle = opendir($path);
  85. if ($handle) {
  86. while (false !== ($item = readdir($handle))) {
  87. if ($item != "." && $item != "..")
  88. is_dir("$path/$item") ? self::delAll("$path/$item", $delDir) : unlink("$path/$item");
  89. }
  90. closedir($handle);
  91. if ($delDir)
  92. return rmdir($path);
  93. } else {
  94. if (file_exists($path)) {
  95. return unlink($path);
  96. } else {
  97. return false;
  98. }
  99. }
  100. }
  101. /**
  102. * @param $dirName
  103. * @return bool
  104. */
  105. public static function delDir($dirName)
  106. {
  107. if (!file_exists($dirName)) {
  108. return false;
  109. }
  110. $dir = opendir($dirName);
  111. while ($fileName = readdir($dir)) {
  112. $file = $dirName . '/' . $fileName;
  113. if ($fileName != '.' && $fileName != '..') {
  114. if (is_dir($file)) {
  115. self::delDir($file);
  116. } else {
  117. unlink($file);
  118. }
  119. }
  120. }
  121. closedir($dir);
  122. return rmdir($dirName);
  123. }
  124. public function delFile2($dir,$file_type='') {
  125. if(is_dir($dir)){
  126. $files = ey_scandir($dir);
  127. //打开目录 //列出目录中的所有文件并去掉 . 和 ..
  128. foreach($files as $filename){
  129. if($filename!='.' && $filename!='..'){
  130. if(!is_dir($dir.'/'.$filename)){
  131. if(empty($file_type)){
  132. unlink($dir.'/'.$filename);
  133. }else{
  134. if(is_array($file_type)){
  135. //正则匹配指定文件
  136. if(preg_match($file_type[0],$filename)){
  137. unlink($dir.'/'.$filename);
  138. }
  139. }else{
  140. //指定包含某些字符串的文件
  141. if(false!=stristr($filename,$file_type)){
  142. unlink($dir.'/'.$filename);
  143. }
  144. }
  145. }
  146. }else{
  147. delFile($dir.'/'.$filename);
  148. rmdir($dir.'/'.$filename);
  149. }
  150. }
  151. }
  152. }else{
  153. if(file_exists($dir)) unlink($dir);
  154. }
  155. }
  156. /**
  157. * @param $surDir
  158. * @param $toDir
  159. * @return bool
  160. */
  161. public static function copyDir($surDir, $toDir)
  162. {
  163. $surDir = rtrim($surDir, '/') . '/';
  164. $toDir = rtrim($toDir, '/') . '/';
  165. if (!file_exists($surDir)) {
  166. return false;
  167. }
  168. if (!file_exists($toDir)) {
  169. self::mkDir($toDir);
  170. }
  171. $file = opendir($surDir);
  172. while ($fileName = readdir($file)) {
  173. $file1 = $surDir . '/' . $fileName;
  174. $file2 = $toDir . '/' . $fileName;
  175. if ($fileName != '.' && $fileName != '..') {
  176. if (is_dir($file1)) {
  177. self::copyDir($file1, $file2);
  178. } else {
  179. copy($file1, $file2);
  180. }
  181. }
  182. }
  183. closedir($file);
  184. return true;
  185. }
  186. /**
  187. * @param $dir
  188. * @return bool
  189. */
  190. public static function mkDir($dir)
  191. {
  192. $dir = rtrim($dir, '/') . '/';
  193. if (!is_dir($dir)) {
  194. if (mkdir($dir, 0700) == false) {
  195. return false;
  196. }
  197. return true;
  198. }
  199. return true;
  200. }
  201. /**
  202. * 遍历获取目录下的指定类型的文件
  203. * @param $path 路径
  204. * @param array $files
  205. * 文件类型数组
  206. *
  207. * @param string $preg
  208. * @return array 所有文件路径
  209. */
  210. public static function getFiles($path, &$files = array(), $preg = "/\.(gif|jpeg|jpg|png|bmp|webp)$/i")
  211. {
  212. if (!is_dir($path))
  213. return null;
  214. $handle = opendir($path);
  215. while (false !== ($file = readdir($handle))) {
  216. if ($file != '.' && $file != '..') {
  217. $path2 = $path .'/' . $file; //'/' .
  218. // dump($path2);
  219. if (is_dir($path2)) {
  220. self::getFiles($path2, $files);
  221. } else {
  222. if (preg_match($preg, $file)) {
  223. $files [] = $path2;
  224. }
  225. }
  226. }
  227. }
  228. return $files;
  229. }
  230. /**
  231. * @param $dir
  232. * @param bool $doc
  233. * @return array
  234. */
  235. public static function getDirs($dir, $doc = false)
  236. {
  237. $dir = rtrim($dir, '/') . '/';
  238. $dirArray [][] = null;
  239. if (false != ($handle = opendir($dir))) {
  240. $i = 0;
  241. $j = 0;
  242. while (false !== ($file = readdir($handle))) {
  243. if (is_dir($dir . $file)) { //判断是否文件夹
  244. if ($file[0] != '.') {
  245. $dirArray ['dir'] [$i] = $file;
  246. $i++;
  247. }
  248. } else {
  249. if ($file[0] != '.') {
  250. $dirArray ['file'] [$j] = $file;
  251. $j++;
  252. }
  253. }
  254. }
  255. closedir($handle);
  256. }
  257. return $dirArray;
  258. }
  259. /**
  260. * @param $dir
  261. * @return int|string
  262. */
  263. public static function dirSize($dir)
  264. {
  265. if (self::readable($dir)) {
  266. $dir_list = opendir($dir);
  267. $dir_size = 0;
  268. while (false !== ($folder_or_file = readdir($dir_list))) {
  269. if ($folder_or_file != "." && $folder_or_file != "..") {
  270. if (is_dir("$dir/$folder_or_file")) {
  271. $dir_size += self::dirSize("$dir/$folder_or_file");
  272. } else {
  273. $dir_size += filesize("$dir/$folder_or_file");
  274. }
  275. }
  276. }
  277. closedir($dir_list);
  278. return $dir_size;
  279. } else {
  280. return "不存在";
  281. }
  282. }
  283. /**
  284. * @param null $dir
  285. * @return string
  286. */
  287. public static function realSize($dir = null)
  288. {
  289. if (self::readable($dir)) {
  290. if (is_file($dir)) { // 对文件的判断
  291. return self::byteFormat(filesize($dir));
  292. } else
  293. return self::byteFormat(self::dirSize($dir));
  294. } else
  295. return "文件不存在";
  296. }
  297. /**
  298. * @param null $dir
  299. * @return bool
  300. */
  301. public static function readable($dir = null)
  302. {
  303. if (($frst = file_get_contents($dir)) && is_file($dir)) {
  304. return true; // 是文件,并且可读
  305. } else { // 是目录
  306. if (is_dir($dir) && ey_scandir($dir)) {
  307. return true; // 目录可读
  308. } else {
  309. return false;
  310. }
  311. }
  312. }
  313. /**
  314. * @param null $dir
  315. * @return bool
  316. */
  317. public static function writeable($dir = null)
  318. {
  319. if (is_file($dir)) { // 对文件的判断
  320. return is_writeable($dir);
  321. } elseif (is_dir($dir)) {
  322. // 开始写入测试;
  323. $file = '_______' . time() . rand() . '_______';
  324. $file = $dir . '/' . $file;
  325. if (file_put_contents($file, '//')) {
  326. unlink($file); // 删除测试文件
  327. return true;
  328. } else {
  329. return false;
  330. }
  331. } else {
  332. return false;
  333. };
  334. }
  335. /**
  336. * @param $dir
  337. * @return bool
  338. */
  339. public static function emptyDir($dir)
  340. {
  341. if (($files = @ey_scandir($dir)) && count($files) <= 2)
  342. return true;
  343. return false;
  344. }
  345. /**
  346. * @param $path
  347. * @param int $property
  348. * @return bool
  349. */
  350. public static function makeDir($path, $property = 0777)
  351. {
  352. return is_dir($path) or (self::makeDir(dirname($path), $property) and @mkdir($path, $property));
  353. }
  354. /**
  355. * @param $dir
  356. * @param bool $file
  357. * @return array
  358. */
  359. public static function scanDir($dir, $file = false)
  360. {
  361. if ($file == true) {
  362. $res = ey_scandir($dir);
  363. foreach ($res as $key => $value) {
  364. if (($res[$key][0]) == '.') {
  365. unset($res[$key]);
  366. }
  367. }
  368. return $res;
  369. } else {
  370. $path = self::getDirs($dir);
  371. $dir = $path['dir'];
  372. foreach ($dir as $key => $value) {
  373. if (($dir[$key][0]) == '.') {
  374. unset($dir[$key]);
  375. }
  376. }
  377. return $dir;
  378. }
  379. }
  380. /**
  381. * 功能:生成zip压缩文件,存放都 WEB_CACHE_PATH 中
  382. *
  383. * @param $files array 需要压缩的文件
  384. * @param $filename string 压缩后的zip文件名 包括zip后缀
  385. * @param $path string 文件所在目录
  386. * @param $outDir string 输出目录
  387. *
  388. * @return array
  389. */
  390. public static function zip($files, $filename, $outDir = WEB_CACHE_PATH, $path = DB_Backup_PATH)
  391. {
  392. $zip = new \ZipArchive;
  393. File::makeDir($outDir);
  394. $res = $zip->open($outDir . "\\" . $filename, \ZipArchive::CREATE);
  395. if ($res == true) {
  396. foreach ($files as $file) {
  397. if ($t = $zip->addFile($path . $file, str_replace('/', '', $file))) {
  398. $t = $zip->addFile($path . $file, str_replace('/', '', $file));
  399. }
  400. }
  401. $zip->close();
  402. return true;
  403. } else {
  404. return false;
  405. }
  406. }
  407. /**
  408. * 功能:解压缩zip文件,存放都 DB_Backup_PATH 中
  409. *
  410. * @param $file string 需要压缩的文件
  411. * @param $outDir string 解压文件存放目录
  412. *
  413. * @return array
  414. */
  415. public static function unzip($file, $outDir = DB_Backup_PATH)
  416. {
  417. $zip = new \ZipArchive();
  418. if ($zip->open(DB_Backup_PATH . "Zip/" . $file) !== true)
  419. return false;
  420. $zip->extractTo($outDir);
  421. $zip->close();
  422. return true;
  423. }
  424. public static function filemtime($file)
  425. {
  426. return filemtime($file);
  427. }
  428. public static function filectime($file)
  429. {
  430. return filectime($file);
  431. }
  432. public static function fileatime($file)
  433. {
  434. return fileatime($file);
  435. }
  436. }