I have 27425 files on FTP server. When I use ftp.nlst() get filename list, it always get 10000 results. How can I get more than 10000 results?
from ftplib import FTP
import os, sys, os.path
ftp = FTP('host', 'username', 'passwd')
ftp.cwd('/browse')
filelist = ftp.nlst()
print filelist
ftp.quit()
thanks a lot.