首页 > 开发 > PowerShell > 正文

Powershell中显示隐藏文件的方法

2020-05-30 20:19:12
字体:
来源:转载
供稿:网友

支持PS3.0及以后版本。
当你使用 Get-ChildItem 检索文件,默认是不显示隐藏文件的。
要包含隐藏文件,请使用 –Force 参数。
代码如下:
PS> Get-ChildItem -Path $home -Force

如果只需要显示隐藏文件,可以使用参数-Hidden ,但它只支持PS3.0。

代码如下:
PS> Get-ChildItem -Path $home -Hidden

    Directory: C:/Users/Tobias

Mode                LastWriteTime     Length Name                                                             
----                -------------     ------ ----                                                             
d--h-        08.01.2012     10:38            AppData                                                          
d--hs        08.01.2012     10:38            Application Data                                                 
d--hs        08.01.2012     10:38            Cookies                                                          
d--hs        08.01.2012     10:38            Local Settings                                                   

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表