79
79
只让Powershell的get-childitem返回文件。
我想递归地使用get-childitem,但只返回文件而不是目录。我有的最好的解决方案似乎并不自然:
gci . *.* -rec | where { $_.GetType().Name -eq "FileInfo" }
```。
我想递归地使用get-childitem,但只返回文件而不是目录。我有的最好的解决方案似乎并不自然:
gci . *.* -rec | where { $_.GetType().Name -eq "FileInfo" }
```。
在Powershell 3.0中,更简单,
gci -Directory #List only directories
gci -File #List only files
这个更短,
gci -ad # alias for -Directory
gci -af # alias for -File
```。
在PowerShell 3.0中,你还可以使用新增加的 -Attributes
参数
(与逻辑运算符一起使用)
Get-ChildItem -Recurse -Attributes !Directory+!System
Golfed
dir -r -Attributes !D
```。
在powershell 2.0中,我想到的最好最简单的解决方案是包含所有扩展名为:
get-childitem -Recurse -include *.*
文件夹没有扩展名,所以它们被排除在外,小心没有扩展名的文件。