FTP 220 Service Ready vs 257 Pathname Created
Both FTP 220 (Service Ready) and 257 (Pathname Created) belong to the 2xx Positive Completion category. 220 indicates that service ready for new user. This is the greeting message sent by the FTP server when a client first connects. Meanwhile, 257 means that pathname created. The server confirms the creation of a new directory or reports the current working directory path.
설명
Service ready for new user. This is the greeting message sent by the FTP server when a client first connects.
이 코드를 보게 되는 경우
Immediately upon connecting to an FTP server. This is the welcome banner confirming the server is accepting connections.
해결 방법
No fix needed — the server is ready. Proceed with USER and PASS commands to authenticate.
설명
Pathname created. The server confirms the creation of a new directory or reports the current working directory path.
이 코드를 보게 되는 경우
After issuing MKD to create a directory or PWD to print the current working directory. The path is enclosed in double quotes.
해결 방법
No fix needed — the directory was created or the current path was returned. Parse the quoted pathname from the response.
주요 차이점
FTP 220: Service ready for new user. This is the greeting message sent by the FTP server when a client first connects.
FTP 257: Pathname created. The server confirms the creation of a new directory or reports the current working directory path.
You encounter 220 when immediately upon connecting to an FTP server. This is the welcome banner confirming the server is accepting connections.
You encounter 257 when after issuing MKD to create a directory or PWD to print the current working directory. The path is enclosed in double quotes.
언제 어떤 것을 사용할지
For 220 (Service Ready): No fix needed — the server is ready. Proceed with USER and PASS commands to authenticate. For 257 (Pathname Created): No fix needed — the directory was created or the current path was returned. Parse the quoted pathname from the response.