It's possible to created a Client Ftp

Just starting out? Need help? Post your questions and find answers here.
lazy
New User
New User
Posts: 7
Joined: Tue Nov 04, 2003 4:23 pm

It's possible to created a Client Ftp

Post by lazy »

:oops: At once sorry for my BAD english but i'm not English :oops: :wink:

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 :cry:
Dreglor
Enthusiast
Enthusiast
Posts: 759
Joined: Sat Aug 02, 2003 11:22 pm
Location: OR, USA

Post by Dreglor »

it is but i not entirly sure how
try finding the ftp server source in the purebasic advance examples folders
~Dreglor
TerryHough
Enthusiast
Enthusiast
Posts: 781
Joined: Fri Apr 25, 2003 6:51 pm
Location: NC, USA
Contact:

Re: It's possible to created a Client Ftp

Post 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
WolfgangS
Enthusiast
Enthusiast
Posts: 174
Joined: Fri Apr 25, 2003 3:30 pm

Re: It's possible to created a Client Ftp

Post 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
WolfgangS' projects http://www.schliess.net
Quotation of the month:
<p3hicy>oder ich hol mir so eine geile aus asien
<p3hicy>die ständig poppen will
<p3hicy>'n brötchen pro tag reicht doch
<p3hicy>die essen eh' nich so viel
Post Reply