I am copying folders with
Copy-Item $source $target -Force -Recurse -Container -ErrorAction Stop
If $target folder already exists, sub folder will be created under $target with same name and files will be copied there. How do I prevent this from happening?