我尝试通过我的 PowerShell 访问我的桌面,它说 "Cannot find path 'C:\Desktop' because it does not exist"

I try to access my desktop thru my PowerShell, and its said "Cannot find path 'C:\Desktop' because it does not exist"

我该如何解决这个问题?

enter image description here

您必须进入您的用户目录并从那里访问它。类似于:

cd C:\Users\mfi\Desktop

mfi 是我的用户,您可以从那里访问桌面。

Desktop是一个特殊的文件夹,要获取它的路径,可以使用

Set-Location ([environment]::GetFolderPath('Desktop'))

cdSet-Location cmdlet

的别名