Changing user account password |
Some servers allow you to change the user account password using the SITE PSWD command. This command is implemented in the Ftp.ChangePassword method.
Example
[C#]
ftp.Connect();
ftp.ChangePassword("old password","new password");
[VB]
ftp.Connect
ftp.ChangePassword("old password","new password")