'Declaration Public Overloads Sub SendFile( _ ByVal localFilename As String, _ ByVal append As Boolean _ )
'Usage Dim instance As FtpClient Dim localFilename As String Dim append As Boolean instance.SendFile(localFilename, append)
public void SendFile( string localFilename, bool append )
Parameters
- localFilename
- The path and filename of the local file to send.
- append
- true if the file should append itself to the remote file if it already exists; false if the remote file should be overwritten.