Get-childitem属性简写语法选项

时间:2014-02-03 15:34:14

标签: powershell powershell-v3.0 get-childitem

从Powershell v3.0开始,Get-ChildItem可以使用以下语法:

dir -af

适用于某些属性选择标准。通过实验,我发现它意味着:

dir -File

与此相同:

dir -Attributes !Directory

是否有关于属性简写语法的官方参考?

2 个答案:

答案 0 :(得分:2)

在MSDN上指定:

在页面上搜索af,第二场比赛:

Directory d, ad
File af
Hidden h, ah
ReadOnly ar
System as

也可以通过Get-Help dir -full获取,Notes之前的Example 1部分。

答案 1 :(得分:1)

我有PowerShell v4,这些参数别名列在内置帮助文件中,这就是我看到它们的方式

Help Get-ChildItem -full

向下滚动...

注意.....

 Get-ChildItem Alias Reference:
        ---------------------------------
        Get-ChildItem     dir
        Directory         d, ad
        File              af
        Hidden            h, ah
        ReadOnly          ar
        System            as

作为别名,你需要用 - (减号)

来介绍它们
Get-ChildItem c:\ -ad -Force

注1:我发现'ad'仅列出目录,而'd'也列出文件。

注意2:我发现-force在查找隐藏文件或文件夹时非常有用。