在命令提示符中查找不包含文本的文件,包括某种文件类型,但不包括文件名中包含某些文本的文件


0

我想在特定目录中查找不包含某些文本的文件(不区分大小写)。我还想包含一个特定路径但排除另一条路径。我怎么能做到这一点?

这是我到目前为止...但我不知道如何处理下面的“不排除”部分,因为这不起作用:

@for /r %f in (*.vbhtml) not in (*exclude.vbhtml) do @find "invalid" "%f" > nul || echo %f

这是不可能的 for /r@find 要求 forfiles (也没有排除选项)。
DavidPostill

考虑使用powershell。 Get-ChildItem 有一个 -exclude string 选项。
DavidPostill
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.