123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- namespace laytp\library;
- use DateTime;
- use DateTimeZone;
- use RecursiveDirectoryIterator;
- use RecursiveIteratorIterator;
- use think\facade\Config;
- /**
- * 文件夹和文件处理类
- */
- class DirFile
- {
- /**
- * 创建目录
- * @param $path
- * @param int $mode
- * @return bool
- */
- public static function createDir($path, $mode = 0777)
- {
- if (is_dir($path)) {
- return true;
- } else {
- //如果目录不存在,则递归创建
- if (mkdir($path, $mode, true)) {
- return true;
- } else {
- return false;
- }
- }
- }
- /**
- * 循环遍历目录下的文件和文件夹并输出
- * @param $pathName
- * @param array $filterDir
- * @param array $filterFile 需要过滤的文件名,*表示所有文件不展示
- * @param array $selected 设置是否已经选中
- * @param array $output
- * @return array|null
- */
- public static function recurDir($pathName, $filterDir = [], $filterFile = [], $selected = [], $output = ['id'=>'id', 'fullName' => 'fullName', 'baseName' => 'baseName'])
- {
- //将结果保存在result变量中
- $result = [];
- $temp = [];
- //判断传入的变量是否是目录
- if (!is_dir($pathName) || !is_readable($pathName)) {
- return null;
- }
- //取出目录中的文件和子目录名,使用scandir函数
- $allFiles = scandir($pathName);
- //遍历他们
- foreach ($allFiles as $fileName) {
- if (in_array($fileName, ['.', '..'])) {
- continue;
- }
- //路径加文件名
- if (mb_substr($pathName, -1, 1) == DS) {
- $fullName = $pathName . $fileName;
- } else {
- $fullName = $pathName . DS . $fileName;
- }
- $baseName = basename($fileName);
- //如果是目录的话就继续遍历这个目录
- if (is_dir($fullName)) {
- if (in_array($fullName, $filterDir)) {
- continue;
- }
- //将这个目录中的文件信息存入到数组中
- $res = [
- $output['baseName'] => $baseName,
- $output['fullName'] => $fullName,
- 'type' => 'dir',
- 'children' => self::recurDir($fullName, $filterDir, $filterFile, $selected, $output),
- ];
- if (in_array($fullName, $selected)) {
- $res['state'] = ['selected' => true];
- } else {
- $res['state'] = ['selected' => false];
- }
- $apiDirName = Config::get('apidirname');
- if(isset($apiDirName[$fullName])){
- $res['name'] = $apiDirName[$fullName];
- }else{
- $res['name'] = '';
- }
- $res['id'] = $fullName;
- $result[] = $res;
- } else {
- if($filterFile != '*'){
- if (in_array($fullName, $filterFile)) {
- continue;
- }
- //如果是文件就先存入临时变量
- //将这个目录中的文件信息存入到数组中
- $tem = [$output['id'] => $fullName, $output['baseName'] => $baseName, $output['fullName'] => $fullName, 'type' => 'file', 'state' => ['selected' => false]];
- if (in_array($fullName, $selected)) {
- $tem['state'] = ['selected' => true];
- } else {
- $tem['state'] = ['selected' => false];
- }
- $temp[] = $tem;
- }
- }
- }
- //取出文件
- if ($temp) {
- foreach ($temp as $f) {
- $result[] = $f;
- }
- }
- return $result;
- }
- /**
- * 删除文件夹
- * @param string $dirname 目录
- * @param bool $withself 是否删除自身
- * @return boolean
- */
- public static function rmDirs($dirname, $withself = true)
- {
- if (!is_dir($dirname)) {
- return false;
- }
- $files = new RecursiveIteratorIterator(
- new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),
- RecursiveIteratorIterator::CHILD_FIRST
- );
- foreach ($files as $fileinfo) {
- $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
- $todo($fileinfo->getRealPath());
- }
- if ($withself) {
- @rmdir($dirname);
- }
- return true;
- }
- /**
- * 复制文件夹
- * @param string $source 源文件夹
- * @param string $dest 目标文件夹
- */
- public static function copyDirs($source, $dest)
- {
- if (!is_dir($dest)) {
- mkdir($dest, 0755, true);
- }
- foreach (
- $iterator = new RecursiveIteratorIterator(
- new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),
- RecursiveIteratorIterator::SELF_FIRST
- ) as $item
- ) {
- if ($item->isDir()) {
- $sontDir = $dest . DS . $iterator->getSubPathName();
- if (!is_dir($sontDir)) {
- mkdir($sontDir, 0755, true);
- }
- } else {
- copy($item, $dest . DS . $iterator->getSubPathName());
- }
- }
- }
- }
|