Windows 终端不使用 dir 命令打印文件
Windows terminal doesn't print files wit dir command
我在 Windows 终端 (Powershell) 中使用 dir
命令时遇到问题。我看不到任何输出。我只是想知道出了什么问题,因为 Powershell 命令行工作正常...
非常感谢您的帮助!
可能文件被隐藏了,试试运行 Dir -force
Dir
是 Get-childitem
的别名
尝试使用以下命令查看:
Get-Alias dir
我建议您停止使用 Dir
,而只使用 Get-childitem
其他有用的 Get-childitem
选项:
Set-Location C:\temp # This changes the location of the folder you are in.
Get-ChildItem C:\temp -Recurse # get all files in all folders
我不确定还有什么建议。 Get-Childitem通常是一个可靠的命令,只要文件夹中有文件,通常就会显示出来。
我在 Windows 终端 (Powershell) 中使用 dir
命令时遇到问题。我看不到任何输出。我只是想知道出了什么问题,因为 Powershell 命令行工作正常...
非常感谢您的帮助!
可能文件被隐藏了,试试运行 Dir -force
Dir
是 Get-childitem
尝试使用以下命令查看:
Get-Alias dir
我建议您停止使用 Dir
,而只使用 Get-childitem
其他有用的 Get-childitem
选项:
Set-Location C:\temp # This changes the location of the folder you are in.
Get-ChildItem C:\temp -Recurse # get all files in all folders
我不确定还有什么建议。 Get-Childitem通常是一个可靠的命令,只要文件夹中有文件,通常就会显示出来。