NLST FTP 命令应该返回带或不带绝对路径的记录吗?
在我的Java项目中,我使用Apache FTP客户端< /a> 从 FTP 服务器下载一些数据。
在生产环境中,Linux 上运行一些 FTP 服务器,当使用 NLST 时,该服务器会返回具有绝对路径的文件。因此,我对 NLST /home
的响应可能是 /home/user
。
为了进行测试,我使用 模拟 FTP 服务器,令人惊讶的是,这个模拟 FTP 服务器在使用 NLST 时返回相对路径。因此,对于上面的示例,将仅返回user
。
我想知道(甚至没有在 RFC 959 中找到)是否有NLST 是否应返回绝对或相对路径的一些标准。也许有一些开关用于此目的?到目前为止,我坚持检查返回的名称是否是相对的,如果是,我自己将它们设为绝对。但也许有更好的解决方案?
请注意,我使用 FakeUnixFileSystem
进行测试,因此操作系统类型不应涉及此问题。
in my Java project I am using Apache FTP Client to download some data from FTP server.
On production there is running some FTP server on Linux which returns files with abosulte paths when using NLST. So my response for NLST /home
might be e.g. /home/user
.
For testing I am using Mock FTP Server and surprisingly this mock FTP server returns relative paths when using NLST. So for the example above is will return only user
.
I was wondering (and didn't find out even not in RFC 959) if there is some standard if the NLST
should return absolute or relative paths. Maybe there is some switch for this purpose? Sofar I stick with checking the returned names if they are or are not relative and if they are I make them absolute myself. But maybe there is better solution out there?
Just to note I am using FakeUnixFileSystem
for testing so OS type should not be involved in this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NLST 应该返回一个相对文件名列表,没有任何其他信息,所以我认为模拟 FTP 服务器正在做正确的事情。
NLST is supposed to return a list of relative file names with no other information about them whatsoever, so I'd say Mock FTP Server is doing the right thing.