仅返回Get-ChildItem中的目录

时间:2014-12-17 17:01:52

标签: powershell

以下查询在PowerShell中搜索文件的位置。有没有办法只返回目录而不是目录属性和文件名?

Get-ChildItem -Path C:\random\random -Filter nameofile -Recurse

2 个答案:

答案 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