In message <[EMAIL PROTECTED]>, Patrick Schoon veld writes: >long to upload. The problem turned out to be in the >__storeFileStream function where the class, by >default, filters for line separator characters. ... >I added a function to optionally turn this feature >off. I'm not sure if it's useful for anyone else, but >it really helped me.
I don't think applying this patch makes sense. If you don't need ASCII mode line terminator translation, then you should just transfer the file in binary mode. The only point to transferring a file in ASCII mode is if you need to transfer an ASCII file from platform 1 to platform 2 and have the platform 1 line terminators tanslated to platform 2 line terminators. Otherwise, one just transfers the file as is in binary mode. Of course, I may be missing something so please correct me if I'm wrong. daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
