0

这可能是一个非常荒谬的问题,但是在执行 copy-item 命令时,只复制主文件夹减去其中的内容。例如我有

\server1\parent\child <<---此文件夹中有嵌套的项目,但 copy-item 仅移动文件夹,而不是其中的项目。我尝试了以下2个:

copy-item "\\server1\parent\child -destination "\\server2\parent\child

copy-item "\\server1\parent\child\* -destination "\\server2\parent\child

但同样,第一行仅移动文件夹,第二行移动文件夹和项目,但项目不会在文件夹内移动。我想保持文件夹结构与我从中复制它的位置相同。我看了几个地方,包括这里,我一定错过了什么。

任何帮助都是极好的!

4

1 回答 1

0

我发布问题后立即找到了答案。我在 \server1\parent\child 之后缺少 -recurse 选项。现在有效的线路是

copy-item ''\\Server1\parent\child" -recurse -destination "\\Server1\parent\child"

感谢大家!

于 2016-04-07T15:46:59.253 回答