复制项目与目的地的问题
我有两个复制项目命令
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
复制项 "C:\Test\folder2" "\\remote_machine\destination" -Recurse
folder1 和folder2 包含文件夹和文件
这两个命令类似,但得到不同的结果
- 复制folder1 的内容到目的地 - 确定
- 将文件夹2及其所有内容复制到目的地 - \remote_machine\destination\folder2 - 失败
更新:我没有收到任何错误。问题是关于第二个文件夹的路径。我希望两个文件夹的内容都位于一个目标文件夹中。
I have two Copy-Item commands
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
Copy-Item "C:\Test\folder2" "\\remote_machine\destination" -Recurse
folder1 and folder2 contain folders and files
Both commands are similar, but I get different results
- Copy content of folder1 to destination - OK
- Copy folder2 with all content to destination - \remote_machine\destination\folder2 - FAIL
UPDATE: I don't get any error. Problem is about path to second folder. I want content of both folders in one destination folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PowerShell 存在问题 - http://groups.google。 com/group/microsoft.public.windows.powershell/browse_frm/thread/ae9b8b4424c2af22
我的示例的解决方案是
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse< /code>
复制项“C:\Test\folder2\*”“\\remote_machine\destination”-Recurse
It's problem with PowerShell - http://groups.google.com/group/microsoft.public.windows.powershell/browse_frm/thread/ae9b8b4424c2af22
Solution for my examples is
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
Copy-Item "C:\Test\folder2\*" "\\remote_machine\destination" -Recurse