标签: powershell null directory file-exists
在不存在的目录上使用$shell.namespace()时,会返回一个空对象。反正有没有shell自动创建目录,如果它不存在,从而没有得到null。
$shell.namespace()
答案 0 :(得分:1)
典型场景是:
if (-not (test-path $directoryPath )) { New-Item -ItemType directory -Path $directoryPath }