FTP LIST 命令响应
我正在尝试用 Java 编写一个 FTP 服务器并拥有基本功能,但我无法弄清楚或找到有关 LIST
命令的任何信息。
发送文件列表
drwxrwxrwx 1 stefan stefan 0 Jan 1 1970 personaluploads
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 serverflags.txt
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 serveroptions.txt
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 levels_npcserver.txt
LIST -a
通过数据连接
。我应该只用 LIST
返回什么?我是通过数据连接还是控制连接发送它?
感谢您的帮助。
I'm trying to write an FTP server in Java and have the basic functionality down, but I can't figure out or find any information on the LIST
command.
LIST -a
sends a list of files like
drwxrwxrwx 1 stefan stefan 0 Jan 1 1970 personaluploads
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 serverflags.txt
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 serveroptions.txt
-rwxrwxrwx 1 stefan stefan 0 Jan 1 1970 levels_npcserver.txt
over the data connection.
What am I supposed to return with just LIST
? Do I send it over the data connection or the control connection?
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
RFC 959 - 文件传输协议
。它有您需要的所有信息。See
RFC 959 - File Transfer Protocol
. It has all the info you need.