批处理文件来检查特定单词“test”是否存在存在于文件中,如果存在则将整个文件夹复制到另一个位置
如何检查文件夹(包含大量文件夹和文件)内的任何文件中是否存在“test”一词..如果存在,请将整个文件夹复制到另一个位置。
请帮忙谢谢
How can I check if the word "test" exist in any files inside a folder(that contain tons of folders and files) .. and if exist, copy the whole folder to another location.
Please help thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果要检查当前文件夹下任意级别的所有文件,请在 findstr 命令中添加 /S 开关。在 xcopy 命令中执行相同操作以复制整个文件夹结构。
If you want to check all files beneath current folder at any level, add /S switch in findstr command. Do the same in xcopy command to copy the whole folder structure.