Add initial implementation of FTP server with configuration, session handling, and basic commands support

This commit is contained in:
2025-06-24 23:06:33 +08:00
parent 950ecbf580
commit e51829abfa
10 changed files with 1184 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
FTP Server Test Document
This document is located in the documents subdirectory.
You can navigate to this directory using the CWD command:
CWD documents
Then list the files using:
LIST
And download this file using:
RETR test_doc.txt
This tests the directory navigation functionality of the FTP server.