How can I merge two folders in Windows?

6

1

I need to merge 2 folders together that will contain some of the same files, and some new ones. There are a LOT of files to merge in. I know you can rename the source folder to the same as the target, but you have handle the create copy dialog. Anyway to bypass that dialog? Maybe using a command prompt?

darthg8r

Posted 2011-11-01T16:38:18.373

Reputation: 239

How about using WinMerge?

– Uwe Keim – 2011-11-01T17:09:53.530

Can you explain what you mean by merge? Do you want files to be overwritten by their counterpart in the other folder or actually combined together? – JustinStolle – 2011-11-01T17:40:15.387

I know you can rename the source folder, but you have handle the create copy dialog. Anyway to bypass that dialog?   Why not just click the Do for All box? You only have to click it once for the Folder exists/Merge? prompt and once for File Exists/Action?. You’d click the Do All box on each, clicking Yes for merge-folder and Skip for file-exists. Windows will handle it from there, merging the folders and skipping existing file(names). Other than that, the only other prompt you might get will be in case of hidden/system files, for which you would just click Do All again. – Synetech – 2013-02-17T17:08:37.247

Answers

6

I would recommend using the free Microsoft RichCopy. RichCopy is essentially an updated GUI and backend for Microsoft's older Robocopy. This utility works very well and is highly configurable. It has the ability to continue if an error is encountered so as not to abort the overall copy process. One of its more notable strengths is the ability to very easily allocate resources (assign multiple process threads, cache size, etc..) to control the overall copy process in a very granular fashion. I use this tool often to merge gigabytes of source data into a single folder. It will also output a command line string if you would prefer that. The tool in unsupported by Microsoft but over the years I have had no issues with it's day to day use.

Key Features of RichCopy

  1. More powerful, faster and stable than than any other file copying tool.
  2. Create several profiles to assign special settings with a specific profile.
  3. Copy files from multiple and different locations and save in a single destination.
  4. Filter the files based on the date, time and choose to either copy or opt those files.
  5. Being on GUI, supports command lines.
  6. Suspend and resume file copy at any time.

Microsoft RichCopy

You can read further details with additional information here.

You can download RichCopy here

Mort

Posted 2011-11-01T16:38:18.373

Reputation: 382

4

WinMerge has the ability to compare two folders. The compare can recursively process folders. The compare will tell you which files are identical, different, and exist in only one folder or the other. It also has functions that will move files from one side of the comparison to the other for you.

Mike Chess

Posted 2011-11-01T16:38:18.373

Reputation: 5 583

2

Unless you want to combine files, you can likely find a way to use Robocopy (see link for usage examples).

JustinStolle

Posted 2011-11-01T16:38:18.373

Reputation: 1 195