FTPConnectionDownloadFile Method (String, String, WriteMode) |
Download a file from the FTP server and save it locally.
Namespace:
EnterpriseDT.Net.Ftp
Assembly:
edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.3.0.0
Syntaxpublic virtual void DownloadFile(
string localPath,
string remoteFile,
WriteMode writeMode
)
Public Overridable Sub DownloadFile (
localPath As String,
remoteFile As String,
writeMode As WriteMode
)
public:
virtual void DownloadFile(
String^ localPath,
String^ remoteFile,
WriteMode writeMode
)
abstract DownloadFile :
localPath : string *
remoteFile : string *
writeMode : WriteMode -> unit
override DownloadFile :
localPath : string *
remoteFile : string *
writeMode : WriteMode -> unit
Parameters
- localPath
- Type: SystemString
Local file to put data in. - remoteFile
- Type: SystemString
Name of remote file in current working directory. - writeMode
- Type: EnterpriseDT.Net.FtpWriteMode
Overwrite, Append or Resume.
Remarks
See Also