list[0] != null Greg
-----Original Message----- From: Pandit [mailto:[EMAIL PROTECTED] Sent: Friday, January 02, 2004 7:54 AM To: [EMAIL PROTECTED] Subject: File exists or not 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
