Windows-7,Windows 资源管理器 - 查找文件夹中未命名为 debug 的所有文件

Windows-7,Windows 资源管理器 - 查找文件夹中未命名为 debug 的所有文件

在 Windows-7 中,Windows 资源管理器是否有一个简单的方法来查找文件夹中所有名为 .dll 的文件不是名为 debug?

我希望答案在各个 Windows 系统上是一致的,但这可能期望太高了……

答案1

对于任何带有 PowerShell 的 Windows 版本,请尝试以下操作:

# initialize the items variable with the contents of a directory

$items = Get-ChildItem -Path "c:\ProgramData\Notepad++" -Recurse

foreach ($item in $items)

{

if (($item.Attributes -ne "Directory") -and ($item.Name -like "*.dll") -and -not ($item.Directory -like "*ebug*"))

{ Write-Host $item.Name }

}

注意:此代码格式不佳,可能需要改进才能满足您的需求。欢迎对其外观提出任何帮助!

相关内容