我想,如果它不存在,所以我沒有創建一個使用PowerShell的一個文件夾:創建一個文件夾,如果不存在的話 - 「項目已存在」
$DOCDIR = [Environment]::GetFolderPath("MyDocuments")
$TARGETDIR = "$DOCDIR\MatchedLog"
if(!(Test-Path -Path MatchedLog)){
New-Item -ItemType directory -Path $DOCDIR\MatchedLog
}
這是給我的錯誤,該文件夾它已經存在,但它不應該嘗試創建它。
我不知道什麼是錯在這裏
新建項目:\用戶\升\文檔\ MatchedLog已經存在:指定名稱C項目。在C:\ Users \ l \ Documents \ Powershell \ email.ps1:4 char:13 + New-Item < < < < < -ItemType directory -Path $ DOCDIR \ MatchedLog + CategoryInfo:ResourceExists:(C:\ Users \升....已廢除\ MatchedLog:字符串)[新建項目],IOException異常 + FullyQualifiedErrorId:DirectoryExist,Microsoft.PowerShell.Commands.NewItemCommand`
試試這個:新建項目-ItemType目錄-Force - 路徑C:\ Path \ That \ May \或\ May \ Not \ Exist –