考虑这个目录结构:
C:\temp\A\file.txt C:\temp\B
如果我运行命令
Copy-Item "C:\temp\A" "C:\temp\B\A" -Recurse -Force -ErrorAction Stop
我有
C:\temp\A\file.txt C:\temp\B\A\file.txt
如果从这种新情况开始,我第二次运行相同的命令,我最终会用
C:\temp\A\file.txt C:\temp\B\A\file.txt C:\temp\B\A\A\file.txt
为什么结果不同虽然我运行相同的命令?