我想在特定目录中查找不包含某些文本的文件(不区分大小写)。我还想包含一个特定路径但排除另一条路径。我怎么能做到这一点?
这是我到目前为止...但我不知道如何处理下面的“不排除”部分,因为这不起作用:
@for /r %f in (*.vbhtml) not in (*exclude.vbhtml) do @find "invalid" "%f" > nul || echo %f
考虑使用powershell。
—
DavidPostill
Get-ChildItem
有一个 -exclude string
选项。
for /r
和@find
要求forfiles
(也没有排除选项)。