完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。
Search my Files是一款文件和重复文件搜寻工具,它有扩展的搜索过滤功能和一个SQLite驱动的结果报告工具,您可以根据您的需要使用该子筛选结果。
软件功能
按位置搜索文件,
查阅文件/或文件夹,
按长和短(8.3)格式的文件名和位置,
查询文件扩展名,
按文件时间(修改,创建,访问)
按文件大小
按文件的属性,
按文件的扩展属性,
通过扩展筛选,
按属性筛选,
由大小筛选,
由FILETIME过滤,
免费过滤器使用正则表达式。
提取真正的文件类型(使用TrIDLib.dll),
提取任何Mediafiles(使用MediaInfo.dll)的详细信息,
各种哈希Calculacte(MD5,CRC32,SHA1),
从任意文件中提取和分析ADS的替代文件流,
免费过滤器使用正则表达式。
结果可以保存和加载,
广泛的SQLite驱动报告工具,
允许免费查询,
可以选择任何类型的文件被复制或移动,
删除或清除。
MD5驱动的重复文件检测的实施,
简化MD5计算,以实现优越的检测速度,
"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。
本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。
软件大小:5.97 MB
我觉得这个软件还是很不错的,我曾经丢了好多东西,只有用这个软件才把它找回来.轻松恢复误删除文件软件名称:Recover My Files V2.6.6星级评价 ★★★★★Recover My Files可以查找并恢复硬盘、U盘、存储卡中误删除甚至是进行磁盘格式化后的文件,并且可以指定文件夹进行搜索。下载地址:http://www.crsky.com/soft/2510.html使用方法:Recover My Files V2.6.6(恢复我的文件)先点start search (开始搜索)英文:what would you link to do?(你将采取什么样的操作呢?)1.fast search(快速搜索)详细:search for:.recently deleted files.recently deleted folders.temporary files解释:搜索如下: .最近被删除的文件.最近删除的文件夹.临时文件2.complete search(完整搜索)详细:search for:.recently deleted files.recently deleted folders.temporary files.full cluster level search of hard drive (lost files)this search will take longer than a "Fast Search"however,it will potentially recover more files.解释:搜索: .最近被删除的文件.最近删除的文件夹.临时文件.充分簇级搜索的硬盘驱动器(丢失的文件) 这种搜索将需要较长时间,比"快速搜索" ,但这将可以恢复更多的文件。3.format recover(格式化恢复)详细:search for files on a partition that has been accidently formatted. A full sector level search of the hard drive (Lost files).This is a lengthy search.解释:搜索文件就按照分割误格式化操作。按照全行业的水平搜索的硬盘驱动器(丢失的文件) 。 这个需要很长的时间搜索。4.manually set options(手动设置选项)注意事项:删除后不能再往该盘下写入数据,否则会降低回复的数据的几率,一般不写入后几率大约是95% 使用软件:易我数据恢复向导,Recover My Files。 简单介绍易我数据恢复向导的使用方法: Step1:启动易我数据恢复向导 Step2:选择被误删除文件所在的分区 Step3:找到被误删除的文件,勾选前面的回复标记,然后执行下一步骤 Step4:软件提示需要为被恢复文件制定存放的文件 Step5:软件自动生成报告并完成回复过程.
http://www.verycd.com/search/files/my%20heart%20will%20go%20on%20mv 自己去下,将近200M的东西指望别人发到你邮箱? 你疯了还是别人疯了 上面那个是verycd的搜索结果,自行选择下载的版本(推荐2个,一个是DVD的VOB,还有一个是现场版本live) 下面这个是欧美720p高清MV合集,29首就是my heart will go on,但是大小比上面的地址要小,请自行决定下载哪个 http://www.verycd.com/topics/2771273/
这个类可以用来搜索在给定的文本目录中的文件。 它可以给定目录遍历递归查找某些文件扩展名的文件。 并打开找到的文件,并检查他们是否包含搜索词语。 它返回一个含有所有文件的列表包含搜索词语数组。 复制代码 代码如下: <?php /* Class for searching the contents of all the files in a directory and its subdirectories For support please visit http://www.webdigity.com/ */ class searchFileContents{ var $dir_name = '';//The directory to search var $search_phrase = '';//The phrase to search in the file contents var $allowed_file_types = array('php','phps');//The file types that are searched var $foundFiles;//Files that contain the search phrase will be stored here //开源代码OSPHP.COM.Cn var $myfiles; function search($directory, $search_phrase){ $this->dir_name = $directory; $this->search_phrase = $search_phrase; $this->myfiles = $this->GetDirContents($this->dir_name); $this->foundFiles = array(); if ( empty($this->search_phrase) ) die('Empty search phrase'); if ( empty($this->dir_name) ) die('You must select a directory to search'); foreach ( $this->myfiles as $f ){ if ( in_array(array_pop(explode ( '.', $f )), $this->allowed_file_types) ){ //开源OSPhP.COM.CN $contents = file_get_contents($f); if ( strpos($contents, $this->search_phrase) !== false ) $this->foundFiles [] = $f; //开源代码OSPhP.COm.CN } } return $this->foundFiles; } function GetDirContents($dir){ if (!is_dir($dir)){die ("Function GetDirContents: Problem reading : $dir!");} if ($root=@opendir($dir)){ //PHP开源代码 while ($file=readdir($root)){ if($file=="." || $file==".."){continue;} if(is_dir($dir."/".$file)){ $files=array_merge($files,$this->GetDirContents($dir."/".$file)); }else{ $files[]=$dir."/".$file; //开源OSPhP.COM.CN } } } return $files; } } //Example : $search = new searchFileContents; $search->search('E:/htdocs/AccessClass', 'class'); //开源代码OSPHP.COM.Cn var_dump($search->foundFiles); ?>
search my files,去找这个吧,绿色版,很小,搜索很方便,可以再win7下面使用。