Re: How to merge two binary files into one?

2005-04-05 Thread Grant Edwards
On 2005-04-05, Andrew Dalke <[EMAIL PROTECTED]> wrote: > 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 I knew I should have looked through shutil to see if t

Re: How to merge two binary files into one?

2005-04-05 Thread could ildg
I'm so glad that this this problem has so many recipes. On Apr 5, 2005 1:57 PM, Andrew Dalke <[EMAIL PROTECTED]> wrote: > 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 s

Re: How to merge two binary files into one?

2005-04-04 Thread Andrew Dalke
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

Re: How to merge two binary files into one?

2005-04-04 Thread could ildg
Thank Grant, it works well. On Apr 5, 2005 10:54 AM, Grant Edwards <[EMAIL PROTECTED]> wrote: > On 2005-04-05, could ildg <[EMAIL PROTECTED]> wrote: > >> > I want to merge file A and file B into a new file C, All of > >> > them are binary. > >> > >> file('C','wb').write(file('A','rb').read()+file(

Re: How to merge two binary files into one?

2005-04-04 Thread Grant Edwards
On 2005-04-05, could ildg <[EMAIL PROTECTED]> wrote: >> > I want to merge file A and file B into a new file C, All of >> > them are binary. >> >> file('C','wb').write(file('A','rb').read()+file('B','rb').read()) > > Python is really magic, even merge file can use "+". You probably shouldn't use t

Re: How to merge two binary files into one?

2005-04-04 Thread could ildg
Thank you! Python is really magic, even merge file can use "+". On Apr 5, 2005 9:20 AM, Grant Edwards <[EMAIL PROTECTED]> wrote: > On 2005-04-05, could ildg <[EMAIL PROTECTED]> wrote: > > > I want to merge file A and file B into a new file C, All of > > them are binary. > > file('C','wb').write(

Re: How to merge two binary files into one?

2005-04-04 Thread Grant Edwards
On 2005-04-05, could ildg <[EMAIL PROTECTED]> wrote: > I want to merge file A and file B into a new file C, All of > them are binary. file('C','wb').write(file('A','rb').read()+file('B','rb').read()) -- Grant Edwards grante Yow! ... or were you

How to merge two binary files into one?

2005-04-04 Thread could ildg
I want to merge file A and file B into a new file C, All of them are binary. How to do that? thanks a lot. -- 鹦鹉聪明绝顶、搞笑之极,是人类的好朋友。 直到有一天,我才发觉,我是鹦鹉。 我是翻墙的鹦鹉。 -- http://mail.python.org/mailman/listinfo/python-list