質問

私はJavaでFTPサーバーを書き込もうとしていますが、基本的な機能をダウンしていますが、 LIST 指図。

LIST -a 次のようなファイルのリストを送信します

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?データ接続またはコントロール接続を介して送信できますか?

助けてくれてありがとう。

役に立ちましたか?

解決

見る RFC 959 - File Transfer Protocol. 。必要なすべての情報があります。

LIST (LIST)

            This command causes a list to be sent from the server to the
            passive DTP.  If the pathname specifies a directory or other
            group of files, the server should transfer a list of files
            in the specified directory.  If the pathname specifies a
            file then the server should send current information on the
            file.  A null argument implies the user's current working or
            default directory.  The data transfer is over the data
            connection in type ASCII or type EBCDIC.  (The user must
            ensure that the TYPE is appropriately ASCII or EBCDIC).
            Since the information on a file may vary widely from system
            to system, this information may be hard to use automatically
            in a program, but may be quite useful to a human user.
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top