NLST FTP 命令应该返回带或不带绝对路径的记录吗?

发布于 2024-10-19 20:24:30 字数 716 浏览 1 评论 0原文

在我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花期渐远 2024-10-26 20:24:31

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文