标题: [文本处理] 批处理求助 !搜索指定内容将文件复制到指定文件夹 [打印本页]
作者: bingo0128 时间: 2019-5-19 11:29 标题: 批处理求助 !搜索指定内容将文件复制到指定文件夹
批处理求助 !搜索指定内容将文件复制到指定文件夹
xml文件 搜索包含指定内容将匹配文件复制到指定文件夹
作者: zaqmlp 时间: 2019-5-19 11:56
- @echo off
- set info=互助互利,支付宝扫码头像,感谢赞助
- rem 有问题,可加QQ956535081及时沟通
- title %info%
- cd /d "%~dp0"
- set "新文件夹=D:\new"
- md "%新文件夹%" 2>nul
- powershell -NoProfile -ExecutionPolicy bypass ^
- $searchstr='搜索的指定内容';^
- dir -r^|?{($_ -is [System.IO.FileInfo]) -and ($_.Extension -eq '.xml')}^|%%{^
- $f=$false;^
- $text1=[IO.File]::ReadAllText($_.FullName, [Text.Encoding]::Default);^
- $text2=[IO.File]::ReadAllText($_.FullName, [Text.Encoding]::UTF8);^
- if($text1.Contains($searchstr)){$f=$true;};^
- if($text2.Contains($searchstr)){$f=$true;};^
- if($f){^
- write-host $_.FullName;^
- cp -liter $_.FullName '%新文件夹%' -force;^
- };^
- };^
- write-host '%info%' -ForegroundColor green;
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |