我想编写一个powershell脚本,将源文件和文件夹复制到目标。请参阅下面的来源结构。
C:\
Web
Index.html
Web.config
Bin
web.dll
lib.dll
json.dll
Content
img
pic.png
profile.png
theme
dark.png
Style.css
我想在目的地保持相同的结构。
假如我做
Copy-Item "C:\Web" -Destination "d:\Web" -recurse -force
我需要在两个地方都有相同的结构。而且如果我执行多次相同的命令,结构应该是相同的。内容应该在目的地覆盖。