> What is the preferred way of copying a binary file? shutil.copyfile(src,dest) or open(dest,'w+b').write(open(src,'r+b').read()) -- --Darrell