Powershell中显示隐藏文件的方法
支持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
d--hs 08.01.2012 10:38 my documents
d--hs 08.01.2012 10:38 nethood
(...)