Hello,
We are attempting to use the vCO 6.1 FTPClient class in order to place files on an FTP server. The client is able to successfully authenticate and place a file on the server, but it is not able to make or change directories.
Issuing the following commands result in a “500” (invalid syntax) error code:
- myFTPClient.executeCommand("mkdir", "test");
- myFTPClient.executeCommand(“cd”, “test”);
Is it possible to create and change directories with the FTPClient, and if so, what is the correct approach?
Thanks