最佳答案
$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\
不存在,是否可以用一个命令创建它?