考虑这个目录结构:
C:\temp\A\file.txt C:\温度\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
尽管我运行相同的命令,为什么结果不同?