Jump to content

Recommended Posts

Posted

Not sure what it is you want to do? Do you want to list files on an ftp server and show them in an unigui window?

 

I would put an ftp client component on the main module of your application. On the main form I would create an interface for the ftp client component, like host name to connect to, username, password, etc.

After connection you can use a a listview/treeview to display the files on the server.

Posted

Not sure what it is you want to do? Do you want to list files on an ftp server and show them in an unigui window?

 

I would put an ftp client component on the main module of your application. On the main form I would create an interface for the ftp client component, like host name to connect to, username, password, etc.

After connection you can use a a listview/treeview to display the files on the server.

 

hi anders and thank for the reply,

i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do?

thanks in advance. :)

Posted

i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do?

thanks in advance. :)

1. You can use any non-visual ftp library, just make sure that

2. it is thread-safe

3. you connect in FTP passive mode

4. your server allows outgoing connections, because 99% of ISPs and hosters restrict them.

Posted

For client ftp connection whitout any problem I use "Clever Internet Suite".

It's multithread and stable.

 

bye

 

hi anders and thank for the reply,

i want connect to another ftp server and download some file (that file i have to import in my local db), i have think to connect with indy ftp component, it's only way to do?

thanks in advance. :)

Posted

1. You can use any non-visual ftp library, just make sure that

2. it is thread-safe

3. you connect in FTP passive mode

4. your server allows outgoing connections, because 99% of ISPs and hosters restrict them.

 

 

For client ftp connection whitout any problem I use "Clever Internet Suite".

It's multithread and stable.

 

bye

thanks guys, i'll try the solution and report the results ;)

×
×
  • Create New...