I knew if I looked behind enough trees I would eventually find the forest only to realize I was in the center of it all along. A good Nap didn't hurt either...
The original question was maybe not clear enough. I had no issue with the FTP server end. I was however unable to pull files from the specified folder on the local system. I have since figured out the answer. It seems that I was trying to make this an FTP issue and was overly focused on solving it through the FTP component when in reality it was a windows directory issue. I have included the updated code below...
Just goes to show that when you are stuck, take a nap... The answer will be crystal clear...
private void button1_Click(object sender, EventArgs e)
{
FTPClient ftp = new FTPClient(HostName);
string myZip = "717_20060411.zip";
try
{
ftp.Login(Username, Password);
ftp.ConnectMode = FTPConnectMode.PASV;
ftp.TransferType = FTPTransferType.BINARY;
System.IO.Directory.SetCurrentDirectory(ArchiveFolder);
ftp.Put(myZip, myZip);
}
catch (Exception ex)
{
MessageBox.Show("Transfer Error: " + ex);
}
finally
{
ftp.Quit();
}
}
I hope this can help others on the same quest of sleepless perfection...
<grin>
-greg