1. ホーム
  2. powershell

Powershell 2 フォルダが存在しない場合に作成するコピーアイテム

2023-10-17 22:26:04

質問

$from = "\\something\1 XLS\2010_04_22\*"
$to =  "c:\out\1 XLS\2010_04_22\"
copy-item $from $to -Recurse 

これは c:\out\1 XLS\2010_04_22\ が存在すれば動作します。一つのコマンドで c:\out\1 XLS\2010_04_22\ を作成することは可能ですか?

どのように解決するのですか?

そうです。 -Force パラメータを追加します。

copy-item $from $to -Recurse -Force