On 12 March 2011 10:42, chenxuejie <[email protected]> wrote:
> Hi All.
>
> I use FTPSClient to list FTP server's directory.
> When FTP server's directory contains file, FTPSClient.listFiles() execute
> correctly.
> But, when FTP server's directory do not contains any file. it allways
> throw exception.
Which version of NET are you using?
What is the exact Exception thrown?
> My example code as follows.
> static void main(String[] args){
>
> FTPSClient client = new FTPSClient();
> //start to set KeyManager and TrustManager
> .....
> client .setKeyManager(kmf.getKeyManagers()[0]);
> client .setTrustManager(tmf.getTrustManagers()[0]);
> //end set KeyManager and TrustManager
>
> client .connect(localhost, 21);
> client .login(guest,guest);
> client .execPROT("P");
> client .execPBSZ(0);
> client .pwd();
> client .pasv();
> client .listFiles();
> }
>
> Xuejie.Chen
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]