Powershell フォルダ存在確認・作成
Out-Null : フォルダ作成時のメッセージを非表示
$FolderPath = "C:\Temp\" # フォルダが存在しない場合は作成 if (-not (Test-Path $FolderPath)) {New-Item -Path $LogFilePath -ItemType "directory" | Out-Null}
Out-Null : フォルダ作成時のメッセージを非表示
$FolderPath = "C:\Temp\" # フォルダが存在しない場合は作成 if (-not (Test-Path $FolderPath)) {New-Item -Path $LogFilePath -ItemType "directory" | Out-Null}