Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python ftplib can't get size of file before download?

Tags:

python

ftplib

I'm using ftplib to transfer files. Everything is working great. Now I'm trying to get the size of the target file before downloading.

  1. First, I tried just getting size with ftp.size(filename). Server complained that I can't do that in ascii mode.

  2. Then I tried setting binary mode using ftp.sendcmd("binary") and ftp.sendcmd("bin"). In both cases the server complained "500 binary Not understood"

Can ftplib get size of a file before downloading in this instance? I don't control the FTP server and can't change how it's behaving.

Thanks

like image 731
jason Avatar asked Jul 12 '10 20:07

jason


2 Answers

Very late reply, but here's the correct answer. This works with ProFTPD.

ftp.sendcmd("TYPE i")    # Switch to Binary mode
ftp.size("/some/file")   # Get size of file
like image 182
Ryan Avatar answered Nov 01 '22 15:11

Ryan


Ftplib can get the size of a file before downloading. As the documentation says:

FTP.size(filename) Request the size of the file named filename on the server. On success, the size of the file is returned as an integer, otherwise None is returned. Note that the SIZE command is not standardized, but is upported by many common server implementations

Apparently your server doesn't support this feature.

like image 45
Piotr Duda Avatar answered Nov 01 '22 17:11

Piotr Duda