Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Moving Files
#1
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.
#2
Macro Macro2463
Code:
Copy      Help
ren- "$Documents$/Folder1/*" "$Desktop$/Folder23" FOF_NOCONFIRMMKDIR
#3
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.
#4
Replace ren to cop.
This code should move just files, without Folder1, unless you removed /*. Try to replace /* to /*.*

Macro Macro2463
Code:
Copy      Help
cop- "$Documents$/Folder1/*.*" "$Desktop$/Folder23" FOF_NOCONFIRMMKDIR
#5
Awesome
You save my life again.
Thank you for your suport.


Forum Jump:


Users browsing this thread: 1 Guest(s)