giampaolo / pyftpdlib

Extremely fast and scalable Python FTP server library
MIT License
1.65k stars 267 forks source link

Allow MFMT to work on directories as well #507

Closed guppy closed 1 year ago

guppy commented 5 years ago

I have a user who needs to be able to use MFMT on a directory and before the patch, this happens:

lftp guppy@example.com:/> quote mfmt 20190101010100 ftp_test 550 /ftp_test is not retrievable

After the fix:

lftp guppy@example.com:/> quote mfmt 20190101010100 ftp_test 213 Modify=20190101010100; /ftp_test.

And on something that doesn't exist:

lftp guppy@example.com:/> quote mfmt 20190101010100 blahblah 550 No such file or directory.

coveralls commented 5 years ago

Coverage Status

Coverage remained the same at ?% when pulling 1c450dc2b97178ad8ea717c575e7f4fc064f5aa5 on guppy:master into 3e9af286e1d0e9ccf4f9e2306af44635a3e3faae on giampaolo:master.

guppy commented 5 years ago

Are these checks broken? They seem to fail on all pull requests.