こんにちは、今日はPowerShellでディレクトリを移動するコマンドレットのSet-Locationの使い方についてまとめていきます。
Table of Contents
確認環境
PSVersion 5.1.18362.1110
Set-Locationの使い方
コマンドレット名の後にスペースを空けて移動したいディレクトリ名を指定すると、そのディレクトリに移動することができます。
以下の例ではTestDirディレクトリに移動しています。
Set-Location TestDir
エイリアス
Set-Locationコマンドレットはエイリアスにcdが設定されており、コマンドプロンプト同様にcdでもディレクトリの移動ができるようになっています。
設定されているエイリアスについてはGet-Aliasコマンドレットで確認することができます。
cdがSet-Locationのエイリアスとして設定されていることが確認できます。
PS C:\Users\santerabyte> Get-Alias cd
CommandType Name Version Source
----------- ---- ------- ------
Alias cd -> Set-Location
リンク
Set-Location (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-location?view=powershell-7