Is it possible to delete file by filename, without the extension. I'm using FTPClient to connect to my FTP server and work great. I can upload files only in 3 formats (.png, .jpg, .gif). In fact i could delete the file only if i specify the extension like that and work:
ftp.deleteFile("/"+productID+setFileName+".png");
But i want to delete the file no matter what is the extension of the file, only by file name. Thanks