FTPConnectionUploadFile(String, String, Boolean) Method
Note: This API is now obsolete.
Upload a local file to the FTP server in the current working directory. Allows appending
if current file exists.
Namespace: EnterpriseDT.Net.FtpAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.7.0.0
[ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")]
public virtual void UploadFile(
string localPath,
string remoteFile,
bool append
)
<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>
Public Overridable Sub UploadFile (
localPath As String,
remoteFile As String,
append As Boolean
)
public:
[ObsoleteAttribute(L"Use UploadFile(string, string, WriteMode)")]
virtual void UploadFile(
String^ localPath,
String^ remoteFile,
bool append
)
[<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>]
abstract UploadFile :
localPath : string *
remoteFile : string *
append : bool -> unit
[<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>]
override UploadFile :
localPath : string *
remoteFile : string *
append : bool -> unit
Parameters
- localPath String
- Path of the local file.
- remoteFile String
- Name of remote file in current working directory.
- append Boolean
- true if appending, false otherwise.