Grant Edwards wrote: > For large files, something like this is probably a better idea:
Or with the little-used shutil module, and keeping your
nomenclature and block size of 65536
import shutil
fout = file('C', 'wb')
for n in ['A', 'B']:
fin = file(n, 'rb')
shutil.copyfileobj(fin, fout, 65536)
fin.close()
fout.close()
Andrew
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
