当我有隐藏文件时,例如 dotfiles 或.git
目录:
如何在Powershell中列出这些文件和目录?
Get-ChildItem
,dir
和ls
似乎都没有显示出来。
答案 0 :(得分:21)
要显示此类隐藏文件,请使用-Force
命令的Get-Childitem
参数。
Get-ChildItem . -Force
您还可以使用-Force
dir -Force
ls -Force
gci -Force
另外:如果你想删除完全删除,例如 .git目录,您可以使用Delete-Item .\.git -Force
修改强>
根据Get-Help Get-ChildItem -Examples
“示例3”,这也有效:
dir -att h, !h