我有一个测试代码,该代码将ftp stub 与pyftpdlib结合使用,令我惊讶的是生产失败。原因是proftpd返回目录名称以响应NLST。这是pyftpdlib FTP stub 的响应:

In [10]: local_conn.login('user', '12345')
Out[10]: '230 Login successful.'

In [11]: import ftplib

In [12]: local_conn = ftplib.FTP()

In [13]: local_conn.connect('localhost', 2121)
Out[13]: '220 pyftpdlib 1.4.0 ready.'

In [14]: local_conn.login('user', '12345')
Out[14]: '230 Login successful.'

In [15]: local_conn.nlst('structuredata_advanced')
Out[15]:
['Report_20150618.csv',
 'Report_20150618.fin',
 'Report_20150619.csv',
 'Report_20150619.fin',
 'Report_20150620.csv',
 'Report_20150620.fin']

这是proftpd的响应:
In [16]: remote_conn = ftplib.FTP()

In [17]: remote_conn.connect('A1B.7Y.XX.XX', 21)
Out[17]: '220 ProFTPD 1.3.4a Server (vztd3.company.com) [A1B.7Y.XX.XX]'

In [18]: remote_conn.login('remoteuser', 'verysecret')
Out[18]: '230 User yougov logged in'

In [19]: remote_conn.nlst('structuredata_advanced')
Out[19]:
['structuredata_advanced/Report_20150624.csv',
 'structuredata_advanced/Report_20150629.csv',
 'structuredata_advanced/Report_20150625.fin',
 'structuredata_advanced/Report_20150628.fin',
 'structuredata_advanced/Report_20150627.fin',
 'structuredata_advanced/Report_20150620.fin',
 'structuredata_advanced/Report_20150619.csv',
  ...]

删除这些目录名称很容易:
    # this code works both in production and testing
    files = conn.nlst(basedir)
    # proftd is weired it returns the basedir name too
    files = [f.split('/')[-1] for f in files]

但我想了解这是否是pyftpdlib做错了吗?
这可以在ProFTPD中配置吗?
我需要了解FTP协议(protocol)和NLST命令吗?

更新

我刚刚测试了另一个名为 uftpd 的ftp服务器,它在发出pyftpdlib时的行为类似于NLST

最佳答案

我是uftpd的作者。

我只是用谷歌搜索了一下,结果返回DJB wrote aboute this,不幸的是,似乎服务器之间的输出有所不同。

我的解释是;建议不要在给定目录中的每个输出文件前添加目录名。即,如果客户端发送“NLST目录”,则服务器不应回复:

dir/a
dir/b

而是简单地将文件输出到dir/目录中,如下所示:
a
b

关于python - 列出带有pyftp的文件-proftpd与pyftpdlib行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31291617/

10-13 01:27