summaryrefslogtreecommitdiff
path: root/ftp-list.py
AgeCommit message (Collapse)AuthorFilesLines
2014-04-01ftp-list: do not break on permission errorPeter Wu1-2/+6
2013-08-12ftp: ignore ms in mlsd, process path in ftp-getPeter Wu1-0/+1
- ftp-get: when 'get bar.ext' on ftp.example.com/foo/, the directory 'foo' won't be created.
2013-07-14ftp-list: detect availability of MLSDPeter Wu1-1/+14
Some ProFTPd are known not to support MLSD. Detect that by checking for MLST in FEAT per RFC 3659[1]. [1]: http://tools.ietf.org/html/rfc3659#page-49
2013-07-13ftp*: python3 compat, SIZE fixes, MLSD supportPeter Wu1-7/+82
Set binary mode before requesting size, do not exit program if size() fails. Support MLSD mode for ftp-list.py (mostly copied from ftp.py)
2013-06-26ftp*.py: add FTP scriptsPeter Wu1-0/+100
- ftp-get.py: sequentially download a list of files with one connection. - ftp-list.py: recursively show directory contents. - ftp.py: supports "MLSD" which is missing in inetutils.