Am new in Python and would like to do a task... I need to compare folder names from two folders dirfolder1 and dirfolder2... compare the folders in them and if they match...copy files and sub folders inside that matched folder...

thanks for your help.

Daddih.

link|improve this question
Do you mean just at the top level? For example would you want to copy dirfolder1/a/b into dirfolder2/c/b? – ABS Feb 23 at 18:26
Have you tried something? show some code and explain where are you stuck – F.C. Feb 23 at 18:33
@ABS they are in different drives.... @ FC have tried something but what i have is just displaying the sub folders in each folder – Daddih Feb 23 at 18:34
feedback

1 Answer

up vote 0 down vote accepted

You could do something like the following:

import os, shutil

dir1 = r'/path/to/dir/1'
dir2 = r'/path/to/dir/2'
copy_dest = r'/path/to/copy/dirs/to'

dir1_folders = [dir for dir in os.listdir(dir1) if os.path.isdir(os.path.join(dir1, dir))]
dir2_folders = [dir for dir in os.listdir(dir2) if os.path.isdir(os.path.join(dir2, dir))]

for dir in dir1_folders:
    if dir in dir2_folders:
        shutil.copytree(os.path.join(dir1, dir), os.path.join(copy_dest, dir))

Basically, walk through each directory creating a list of its subdirectories, compare them, and for the matches, copy them (using copytree in case there are any subdirectories) into a third location.

link|improve this answer
Ahhh, so you want to copy the content from dir1 to dir2? Basically merge the folders? – aravenel Feb 23 at 19:28
Hi Aravenel, thanks for your input the code works.... can we have it like copy stuff from dir1 to dir2 instead of having to copy to another folder... thanks alot i do appreciate it.... think this would be a nice starting point for me to improve the 1st part i have.... thanx :-) – Daddih Feb 23 at 19:29
yeah that's the idea... may be I dint put it correctly.... and how could it handle the issue of windows if we have similar sub folders with in the dir – Daddih Feb 23 at 19:30
In that case you're probably going to want to use something like os.walk() to walk through dir1, and for each file, check if it exists in dir2, skipping those that do, and copying those that dont. Alternatively, you could take the shutil.copytree() example from the official docs and edit it to effectively do the same thing--remove the os.makedirs(), and as you walk through each dir's contents, check if it exists and copy those that do not. – aravenel Feb 23 at 19:36
Thanks a bunch... this is definitely a good starting point....thanx... – Daddih Feb 23 at 23:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.