Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista file management

Vista - merge 100+ multiple folders into one! How? Robocopy? Xcopy?

Reply
 
Old 10-27-2008   #1 (permalink)


Vista x64
 
 

merge 100+ multiple folders into one! How? Robocopy? Xcopy?

Is there an easy way to merge 100 directories into a single directory? (without writing a long batch file)

I was thinking ROBOCOPY or XCOPY would do the trick..

I also tried using the search function of the file manager GUI in Vista, but after it found 1000+ files and tried to move them, it would just "hour glass" for 8+ hours.

My System SpecsSystem Spec
Old 11-18-2008   #2 (permalink)
st


 
 

Re: merge 100+ multiple folders into one! How? Robocopy? Xcopy?

"edwardtilbury" <guest@xxxxxx-email.com> сообщил/сообщила в новостях следующее: news:ae53d0e51a15da66b458d2290b121b1f@xxxxxx-gateway.com...
Quote:

>
> Is there an easy way to merge 100 directories into a single directory?
> (without writing a long batch file)
>
> I was thinking ROBOCOPY or XCOPY would do the trick..
>
> I also tried using the search function of the file manager GUI in
> Vista, but after it found 1000+ files and tried to move them, it would
> just "hour glass" for 8+ hours.
What your folders' configuration looks like? Is this: <pre>
Folder A
+- Folder B
| +- File 1
| +- File 2
+- Folder C
| +- File 3
| +- File 4
+- Folder D
. . . . . . .
</pre>, and you need File 1, File 4, etc "in Folder A\My new folder\"?
Then I think this commands would be of help:

md "My new folder"
for /D %i in (*) do move "%i\*" ".\My New Folder"
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Re: How to merge the "sent items" folders? - Or search for a sent message?! Live Mail
xcopy ftp VB Script
robocopy or xcopy ? Vista General
"Access is denied" for files with .exe or zip extensions using Xcopy or Robocopy Vista General
Merge Multiple CSV's PowerShell


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
╘ Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46