YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* PowerShell 新規のファイルまたはフォルダの作成 [#r73bfe07]
** 空のファイルを作る [#me59441f]
New-Item -Type File 1.txt
** 既存のファイルを削除して空のファイルを作る -Force [#p0...
New-Item -Type File -Force 1.txt
** パス中のフォルダがなければそれも作る -Force [#r21e6623]
New-Item -Type file -Force foo/bar/baz.txt
New-Item -Type directory -Force a/b/c
** 参考 [#ba2ce1f6]
https://technet.microsoft.com/ja-jp/library/ee176914.aspx
終了行:
* PowerShell 新規のファイルまたはフォルダの作成 [#r73bfe07]
** 空のファイルを作る [#me59441f]
New-Item -Type File 1.txt
** 既存のファイルを削除して空のファイルを作る -Force [#p0...
New-Item -Type File -Force 1.txt
** パス中のフォルダがなければそれも作る -Force [#r21e6623]
New-Item -Type file -Force foo/bar/baz.txt
New-Item -Type directory -Force a/b/c
** 参考 [#ba2ce1f6]
https://technet.microsoft.com/ja-jp/library/ee176914.aspx
ページ名: