- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ファイル作成/新規のファイルまたはフォルダの作成 UNIXのtouch相当 へ行く。
- 1 (2016-12-15 (木) 10:28:27)
- 2 (2016-12-15 (木) 01:28:42)
PowerShell 新規のファイルまたはフォルダの作成
空のファイルを作る
New-Item -Type File 1.txt
既存のファイルを削除して空のファイルを作る -Force
New-Item -Type File -Force 1.txt