Page 1 of 1
It's possible to created a Client Ftp
Posted: Tue Nov 04, 2003 4:34 pm
by lazy

At once sorry for my BAD english but i'm not English
So... That is my "problems"
I want to know if it's possible to create a client ftp which make a list of the contents of the directory.... And we can select a file to download it!
i'have make the design but i can't make the prog

Posted: Tue Nov 04, 2003 7:29 pm
by Dreglor
it is but i not entirly sure how
try finding the ftp server source in the purebasic advance examples folders
Re: It's possible to created a Client Ftp
Posted: Tue Nov 04, 2003 9:05 pm
by TerryHough
lazy wrote:I want to know if it's possible to create a client ftp which make a list of the contents of the directory.... And we can select a file to download it!
Yes, it is possible. See the PureBasic Resources site at
http://www.reelmediaproductions.com/cgi ... ourcesSite
and search for FTPXchg. I have full FTP (client) that downloads files
it finds in a directory. The program also lists the files.
Be sure to read the text file included in the zip for more information.
However, this example does not allow for the selection of a single or
multiple files for download. You should be able to modify the code to
allow for selection without much difficulty. Should only need one routine
to check some boxes after the files are listed.
There are a couple of other FTP examples on the PureBasic Resources
site also.
Good luck,
Terry
Re: It's possible to created a Client Ftp
Posted: Tue Nov 04, 2003 9:15 pm
by WolfgangS
lazy wrote:
I want to know if it's possible to create a client ftp
With Purbebasic it's possible to make all kinds of clients (and servers of course;)
Code: Select all
Connection1=OpenNetworkConnection(servername.s,port.l)
MFG
WolfgangS