ファイル・フォルダ作成
$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
}
}