yakiimonster
2/6/2019 - 6:24 AM

New-Item

ファイル・フォルダ作成

$path = "C:\Hoge"
if(!(test-path $path))
{
  New-Item -ItemType Directory -Force -Path $path
}
# パスが存在すれば作成する
function CreateNewDirectory($folderPath)
{
    if(!(test-path $folderPath))
    {
      New-Item -ItemType Directory -Force -Path $folderPath
    }
}