如何使用windows powershell显示隐藏文件(dotfiles)

时间:2018-06-12 12:23:04

标签: windows powershell dotfiles

当我有隐藏文件时,例如 dotfiles .git目录: 如何在Powershell中列出这些文件和目录?

Get-ChildItemdirls似乎都没有显示出来。

1 个答案:

答案 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