Merge two folders, without overwriting any files

finderterminal

I have a folder called "AeroFS", and another one called "AeroFS Backup".

"AeroFS Backup" contains everything that "AeroFS" contains, and more.

I need to merge "AeroFS Backup" back into the "AeroFS" folder, but not overwrite ANY existing files, even if they are newer.

I'm not particularly comfortable with terminal commands, but may give them a try.

Is there a free app that can do this without overwriting existing files at all?

Best Answer

Not sure why the other answer was deleted, it was almost right.

I use the terminal command to do this:

cp -n -v '/src'/* '/dest'

cp = Copy

-n = Don't overwrite existing

-v = Verbose output