Câu trả lời:
Ngoài Get-Location
và Bí danh của nó, bạn cũng có thể sử dụng biến tự động $pwd
.
Các $pwd
biến là tốt đẹp bởi vì bạn có thể truy cập trực tiếp đến các thành viên PathInfo. Ví dụ
$pwd.Path.PadLeft(80)
$pwd.Drive
Và nếu bạn muốn biết thành viên nào ở đó, bạn có thể chuyển lệnh \ bí danh sang Get-Member
:
PS C:\Users\your-name-here\Desktop> pwd|Get-Member
TypeName: System.Management.Automation.PathInfo
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
Drive Property System.Management.Automation.PSDriveInfo Drive {get;}
Path Property System.String Path {get;}
Provider Property System.Management.Automation.ProviderInfo Provider {get;}
ProviderPath Property System.String ProviderPath {get;}
Đó là pwd
. Bạn có thể "xâu chuỗi" nó bằng cách đặt nó trong dấu ngoặc kép. Hơn nữa, bạn có thể xây dựng các đường dẫn như vậy : "$pwd\bin"
.
cd
là đủ. không cầnecho %cd%