Rajeev kamal wrote:
> Hello Niklas,
> When I use FTPClient, I can download the specified file from Apache
FTPServer. I want the users to have the ability to select multiple files
and directories and then download them. Basically I want the user to
specify the directory and then I want the user to be able to download
the directory and it contents. The contents can be further layers of
directories or files. Hope I am able to explain you.
As far as I know, there is no way in the FTP protocol to do this
directly. Therefore, you will find that FTP clients do a LIST to find
all files and then a RETR for each file to retrieve it. You will have to
do the same in your client. There is no way for us to support anything
else on the server side of things.
Hope that helps!
/niklas