php 遍历目录,生成目录下每个文件的md5值并写入到结果文件中
实例代码:
<?php /** * @author Administrator * */ class TestGenerate { public static $appFolder = ""; public static $ignoreFilePaths = array ( "xxxx/xxx.php" ); public static function start() { $AppPath = "E:\\myApp"; TestGenerate::$appFolder = $AppPath; $destManifestPath = "E:\\temp2\\dest.md5.txt"; // dest file handle $manifestHandle = fopen ( $destManifestPath, "w+" ); // write header TestGenerate::writeMaifestHeader ( $manifestHandle ); // write md5 TestGenerate::traverse ( $AppPath, $manifestHandle ); // write footer TestGenerate::writeMaifestFooter ( $manifestHandle ); // close file fclose ( $manifestHandle ); } /** * 遍历应用根目录下的文件,并生成对应的文件长度及md5信息 * * @param unknown $AppPath * 应用根目录,如:xxx/xxx/analytics * @param string $destManifestPath * 生成的manifest文件存放位置的文件句柄 */ public static function traverse($AppPath, $manifestHandle) { if (! file_exists ( $AppPath )) { printf ( $AppPath . " does not exist!" ); return; } if (! is_dir ( $AppPath )) { printf ( $AppPath . " is not a directory!" ); return; } if (! ($dh = opendir ( $AppPath ))) { printf ( "Failure while read diectory!" ); return; } // read files while ( ($file = readdir ( $dh )) != false ) { $subDir = $AppPath . DIRECTORY_SEPARATOR . $file; if ($file == "." || $file == "..") { continue; } else if (is_dir ( $subDir )) { // rescure TestGenerate::traverse ( $subDir, $manifestHandle ); } else { // Sub is a file. TestGenerate::writeOneFieToManifest ( $subDir, $manifestHandle ); } } // close dir closedir ( $dh ); } /** * 写一个文件的md5信息到文件中 * * @param unknown $filePath * @param unknown $fileHandle */ public static function writeOneFieToManifest($filePath, $fileHandle) { if (! file_exists ( $filePath )) { continue; } $relativePath = str_replace ( TestGenerate::$appFolder . DIRECTORY_SEPARATOR, '', $filePath ); $relativePath = str_replace ( "\\", "/", $relativePath ); // ignore tmp directory if (strpos ( $relativePath, "tmp/" ) === 0) { return; } $fileSize = filesize ( $filePath ); $fileMd5 = @md5_file ( $filePath ); $content = "\t\t"; $content .= '"'; $content .= $relativePath; $content .= '"'; $content .= ' => array("'; $content .= $fileSize; $content .= '","'; $content .= $fileMd5; $content .= '"),'; $content .= "\n"; if (! fwrite ( $fileHandle, $content )) { print ($filePath . " can not be written!") ; } } /** * 在manifes文件中写入头信息 * * @param unknown $fileHandle */ public static function writeMaifestHeader($fileHandle) { $header = "<?php"; $header .= "\n"; $header .= "// This file is automatically generated"; $header .= "\n"; $header .= "namespace test;"; $header .= "\n"; $header .= "class MyFile {"; $header .= "\n"; $header .= "\tstatic \$allFiles=array("; $header .= "\n"; if (! fwrite ( $fileHandle, $header )) { printf ( "Failure while write file header." ); } } /** * 在manifes文件中写入尾部信息 * * @param unknown $fileHandle */ public static function writeMaifestFooter($fileHandle) { $footer = "\t);"; $footer .= "\n"; $footer .= "}"; $footer .= "\n"; if (! fwrite ( $fileHandle, $footer )) { printf ( "Failure while write file header." ); } } } // Start application TestGenerate::start (); ?>
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
问题内容: 我需要创建一个遍历子目录中所有文件的循环。您能帮我构造我的代码吗? 问题答案: 将RecursiveDirectoryIterator与RecursiveIteratorIterator结合使用。
我需要在网络驱动器上遍历一个目录,并在层次结构中创建子级到父级的映射。一个代表目录是6个Terrabytes,有90万个文件和900个文件夹。我只关心文件夹而不是文件。出于测试目的,我将没有文件的文件夹复制到另一个网络驱动器,并在复制的版本上运行代码。仅仅是在900个文件夹上迭代可能需要10秒。但是,迭代原始目录结构需要30分钟。我们似乎正在遍历所有90万个文件,尽管我们只是忽略它们。 有没有一种
问题内容: 我有一个目录日志文件。我想使用Python脚本处理此目录中的每个文件。 我该怎么做呢? 问题答案: 使用或,取决于您是否要递归执行。
问题内容: 我需要获取目录中所有文件的列表,包括所有子目录中的文件。用Java完成目录迭代的标准方法是什么? 问题答案: 你可以用来测试给定的文件(路径)是否为目录。如果是true,则只需再次调用同一个方法及其结果即可。这称为递归。 这是一个基本的启动示例。 请注意,这对树的深度超过JVM堆栈可以容纳的深度很敏感。你可能要使用迭代方法或尾递归,但这是另一个主题;)
本文向大家介绍python 遍历目录(包括子目录)下所有文件的实例,包括了python 遍历目录(包括子目录)下所有文件的实例的使用技巧和注意事项,需要的朋友参考一下 如下所示: 以上这篇python 遍历目录(包括子目录)下所有文件的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持呐喊教程。
问题内容: 我想使用Java处理某个目录中的每个文件。 最简单(也是最常见)的方法是什么? 问题答案: 如果目录名称位于中,