目的地的复制项目问题

时间:2010-10-19 12:21:33

标签: powershell command

我有两个Copy-Item命令

  1. Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse

  2. Copy-Item "C:\Test\folder2" "\\remote_machine\destination" -Recurse

  3. folder1和folder2包含文件夹和文件

    两个命令都相似,但我得到的结果不同

    1. 将folder1的内容复制到目标 - 确定
    2. 将包含所有内容的folder2复制到目标 - \ remote_machine \ destination \ folder2 - FAIL
    3. 更新:我没有收到任何错误。问题是关于第二个文件夹的路径。我希望两个文件夹的内容都在一个目标文件夹中。

1 个答案:

答案 0 :(得分:3)

PowerShell存在问题 - http://groups.google.com/group/microsoft.public.windows.powershell/browse_frm/thread/ae9b8b4424c2af22

我的示例的解决方案是

  1. Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
  2. Copy-Item "C:\Test\folder2\*" "\\remote_machine\destination" -Recurse