PowerShell 新規のファイルまたはフォルダの作成空のファイルを作るNew-Item -Type File 1.txt 既存のファイルを削除して空のファイルを作る -ForceNew-Item -Type File -Force 1.txt パス中のフォルダがなければそれも作る -ForceNew-Item -Type file -Force foo/bar/baz.txt New-Item -Type directory -Force a/b/c 参考 |
|
PowerShell 新規のファイルまたはフォルダの作成空のファイルを作るNew-Item -Type File 1.txt 既存のファイルを削除して空のファイルを作る -ForceNew-Item -Type File -Force 1.txt パス中のフォルダがなければそれも作る -ForceNew-Item -Type file -Force foo/bar/baz.txt New-Item -Type directory -Force a/b/c 参考 |
|