欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php工具:搜索文件并执行系统命令

程序员文章站 2022-04-09 17:28:27
...

1.匹配指定的关键字查找文件 2.匹配到文件后再执行相应的系统命令或生成批处理文件 3.反馈执行结果 4.示例:$phpfind.phpd:/photo.jpg,.gif,.pnggmconvert-resize200X200$filename$filename 5.示例解释:查找d:/photo下的所有文件夹及子文件夹jpg,gif,png格

1.匹配指定的关键字查找文件
2.匹配到文件后再执行相应的系统命令或生成批处理文件
3.反馈执行结果
4.示例:$php find.php d:/photo .jpg,.gif,.png "gm convert -resize 200X200 $filename $filename"
5.示例解释:查找d:/photo下的所有文件夹及子文件夹jpg,gif,png格式,调用GraphicsMagick工具转换尺寸为200*200,并覆盖原来的文件
read())) {
        
        if($currentPath[strlen($currentPath) - 1] == '/') {
            $filename = $currentPath . $name;
        } else {
            $filename = $currentPath . '/' . $name;
        }

        if($name == '..' || $name == '.') {
            continue;
        }
        if(is_dir($filename)) {
            $directory[] = $filename;
        } else {
            str_replace(explode(',', $match), '', $name, $count);
            if($match != '*' && $count == 0) {
                continue;
            }
            $template = array('$name', '$filename', '$path', '$index');
            $variable = array($name, $filename, $currentPath, $index);
            $cmd = str_replace($template, $variable, $command);
            if(CREATE_BAT_FILE) {
                $result .= $cmd . PHP_EOL;
            } else {
                echo shell_exec($cmd);
            }
            $index++;
        }
    }

    next($directory);
}

// create bat file
if(CREATE_BAT_FILE) {
    $batFile = fopen('temp.bat', 'w');
    fwrite($batFile, $result);
    fclose($batFile);
    echo 'output file to: ' . str_replace('\\', '/', __DIR__) . '/temp.bat' . PHP_EOL;
}

// echo result:
echo $index . ' file find.' . PHP_EOL;
php工具:搜索文件并执行系统命令