3) DownloadFile("C:", RemoteFile) Remote filename was taken from the above listview
Isn't the file name required as part of the local path in DownloadFile()? For example:
DownloadFile("C:\filename.zip", "filename.zip")
In your example, your local path was only "C:" with no file name specified. Could this be why it is failing?
(5/30/2006 6:49am EST) EDIT:Also, in your initial example you have:
eFTPConnection.DownloadFile(LocalPath, RemoteFile)
Perhaps you need:
eFTPConnection.DownloadFile(LocalPath + RemoteFile, RemoteFile)
Note that depending on your variables, you may need to add a backslash in between the LocalPath and RemotePath for the local path portion of DownloadFile().