以下查询在PowerShell中搜索文件的位置。有没有办法只返回目录而不是目录属性和文件名?
Get-ChildItem -Path C:\random\random -Filter nameofile -Recurse
答案 0 :(得分:5)
(Get-ChildItem -Path C:\random\random -Filter nameofile -Recurse).DirectoryName
答案 1 :(得分:0)
我假设您只需要包含匹配文件的目录名称:
Get-ChildItem -Path C:\random\random -Filter nameofile -Recurse | % { split-path $_.fullname } | sort -uniq