NET FTP Library
PutAscii(String,String,Boolean) Method






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > PutAscii Method : PutAscii(String,String,Boolean) Method
Local File Path
Remote file name
If true the local file will be appended to the remote file
Upload an ASCII file
Syntax
'Declaration
 
Public Overloads Sub PutAscii( _
   ByVal localPath As System.String, _
   ByVal remoteFile As System.String, _
   ByVal append As System.Boolean _
) 
'Usage
 
Dim instance As FTP
Dim localPath As System.String
Dim remoteFile As System.String
Dim append As System.Boolean
 
instance.PutAscii(localPath, remoteFile, append)
public void PutAscii( 
   System.string localPath,
   System.string remoteFile,
   System.bool append
)
public procedure PutAscii( 
    localPath: System.String;
    remoteFile: System.String;
    append: System.Boolean
); 
public function PutAscii( 
   localPath : System.String,
   remoteFile : System.String,
   append : System.boolean
);
public: void PutAscii( 
   System.string* localPath,
   System.string* remoteFile,
   System.bool append
) 
public:
void PutAscii( 
   System.String^ localPath,
   System.String^ remoteFile,
   System.bool append
) 

Parameters

localPath
Local File Path
remoteFile
Remote file name
append
If true the local file will be appended to the remote file
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List