Hi all,
I'm trying to retrive a file from a FTP server. Before, retrieving I need
to check if the file exists. How should I do this?
I tried using this,
FTPFile list[] = getFTPClient().listFiles(fileName);
if ( list != null ) {
exists = true;
}
But this doesn't seems to work. Even though the file doesn't exists, the
variable "list" isn't null. This logic doesn't seems to work. Could
someone guide me how I need to code if I need to verify if the file exists
or not?
Thanks in advance,
Pandit.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]