我有一個PowerShell腳本,做了很多事情,其中之一是移動文件它不會使目錄:Powershell的「布展項目」,如果它不存在
$from = $path + '\' + $_.substring(8)
$to = $quarantaine + '\' + $_.substring(8)
Move-Item $from $to
但它發生的目錄結構尚不存在於$to
路徑中。所以我想讓Powershell使用這個突擊隊創建它。我試過Move-Item -Force $from $to
,但那並沒有幫助。
我該怎麼做才能確保Powershell創建所需的目錄才能使事情正常工作?
我希望我自己清楚,如果沒有,請問!
看到這個問題:http://stackoverflow.com/questions/2695504/powershell-2-copy-item-which-creates-a-folder-if-不存在 – cristobalito
這就是我已經嘗試過,沒有運氣。正如在我的問題 – Michiel
中提到的可以做一個複製和刪除。 – cristobalito