i'm using this simple command to copy over some files and folders that get dropped into a temp folder.
copy c:\update_temp\* c:\target\ -recurse -force
say update_temp has following structure
c:\update_temp\first_file.txt
c:\update_temp\first_folder\anotherfile.txt
when i run the command, here is what i end up with
c:\target\first_file.txt
c:\target\first_folder\anotherfile.txt
**c:\target\first_folder\first_folder**
not sure why that last entry is happening, so now i end up with a ton of unnecessary folders.
I'm running powershell v1
Any ideas? Thanks