[twsocket] how to get FTPClient to start here /Data/

2008-05-04 Thread Darren Doggett
Hi All, I’m new to this so please forgive me! I’m trying to write a small ftp program to download TXT files from tgftp.nws.noaa.gov. I know the files are located here /data/observations/metar/stations/ how do I get the FTPClient to start in this directory? Here is what I Have procedure

Re: [twsocket] how to get FTPClient to start here /Data/

2008-05-04 Thread Francois PIETTE
Call cwd or cwdasync to select the directory you want. I see in your code sample that you use synchronous (blocking) methods. This makes programming easier, for simple things, but on the long term, for more complex tasks, it is better to use asynchronous operation. In that programming model,