Forum > Networking and Web Programming
Need some simple FTP tools
(1/1)
cybersmyth:
Hey guys,
I'm looking to do some real basic FTP stuff. I want my application to download something from a ftp site, do a little work with it and the upload the result. I already have the basic engine put together all working within a local directory. So my idea is basically to download the information into that local directory, run the application pretty much as it already stands and then upload the result.
Can someone point me in the general direction for learning how to do this?
Thanks,
-Joe
theo:
function FtpGetFile(const IP, Port, FileName, LocalFile, User, Pass: string): Boolean;
function FtpPutFile(const IP, Port, FileName, LocalFile, User, Pass: string): Boolean;
See:
http://synapse.ararat.cz/doc/help/ftpsend.html
http://synapse.ararat.cz/
cybersmyth:
Cool. Doesn't get a whole lot easier!
-Joe
Zittergie:
Very helpfull indeed.
I need to upload files from within my application, but how can you make sure that your login & pass can not be read from the executable code or packet sniffers?
Is there a way to just send a filename (including path) to a php and use the php to upload to the webspace?
The problem:
I am working on a coin catalog. Users can make listing of wanted coins and coins to exchange. I want to put this list online from within the coin catalog program, so that users do not have to visit a website to upload their data.
Getting the data from the website is no problem, I already have this working.
Navigation
[0] Message Index