プログラミングとターミナル 基礎

PowerShellコマンド

コマンド 省略コマンド 説明 構文
New-Item ni ファイルを作る New-Item -Path "ファイルパス" -ItemType File
New-Item ni ディレクトリを作る New-Item -Path "ディレクトリパス" -ItemType Directory
Remove-Item ri ファイルを削除する Remove-Item -Path "ファイルパス"
Remove-Item ri ディレクトリを削除する Remove-Item -Path "ディレクトリパス"
Copy-Item cp ファイルをコピーする Copy-Item -Path "元のファイルパス" -Destination "コピー先パス"
Set-Location cd ディレクトリを移動する Set-Location -Path "ディレクトリパス"
Rename-Item rni ディレクトリをリネームする Rename-Item -Path "現在のパス" -NewName "新しい名前"
Move-Item mv ファイルを移動するファイルをリネームする Move-Item -Path "元のファイルパス" -Destination "移動先または新しい名前のパス"