Posts: 100
Threads: 45
Joined: Jan 2014
Guys,
How can I move all the files from the folder "$Documents$/Folder1" to "$Desktop$/Folder23" ?
I'd like to overwrite all files.
Thanks for helping.
Posts: 12,073
Threads: 140
Joined: Dec 2002
Macro
Macro2463
ren- "$Documents$/Folder1/*" "$Desktop$/Folder23" FOF_NOCONFIRMMKDIR
Posts: 100
Threads: 45
Joined: Jan 2014
Gintaras,
Thanks, but I need some adjustments. The macro is cutting the Folder1 and pasting in the Folder23.
I'd like to copy the Folder1 files and paste into Folder23.
I don't want to create another Folder1 into Folder23. I just want to copy the files.
Is it possible?
Thanks for helping.
Posts: 12,073
Threads: 140
Joined: Dec 2002
Replace ren to cop.
This code should move just files, without Folder1, unless you removed /*. Try to replace /* to /*.*
Macro
Macro2463
cop- "$Documents$/Folder1/*.*" "$Desktop$/Folder23" FOF_NOCONFIRMMKDIR
Posts: 100
Threads: 45
Joined: Jan 2014
Awesome
You save my life again.
Thank you for your suport.