Just guessing but are the files binary yet you are downloading them without declaring binary?On 1/16/06, Peter A.Schott <
[EMAIL PROTECTED]> wrote:I download a lot of 4-6 KB files and regularly run into issues with files that
don't get downloaded all the way or otherwise get corrupt.I do something
Peter A.Schott wrote:
> I download a lot of 4-6 KB files and regularly run into issues with files that
> don't get downloaded all the way or otherwise get corrupt.
>
> I do something like:
>
> RemoteList = nlstdir()
> for filename in RemoteList:
> LocalFile = open(filename, "wb")
> LocalFile.
I download a lot of 4-6 KB files and regularly run into issues with files that
don't get downloaded all the way or otherwise get corrupt.
I do something like:
RemoteList = nlstdir()
for filename in RemoteList:
LocalFile = open(filename, "wb")
LocalFile.write( "get file code here" )
LocalFil