 | FTPPutFile Method (FTPHeader, String, String, Boolean) |
Uploads a file to the remote FTP Server.
Namespace:
Koden.Utils.FTPClient
Assembly:
Koden.Utils.FTPClient (in Koden.Utils.FTPClient.dll) Version: 1.1.6453.26060
Syntaxpublic static FWRetVal PutFile(
FTPHeader ftpHeader,
string localFile,
string serverDest,
bool overwrite = false
)
Public Shared Function PutFile (
ftpHeader As FTPHeader,
localFile As String,
serverDest As String,
Optional overwrite As Boolean = false
) As FWRetVal
public:
static FWRetVal^ PutFile(
FTPHeader^ ftpHeader,
String^ localFile,
String^ serverDest,
bool overwrite = false
)
static member PutFile :
ftpHeader : FTPHeader *
localFile : string *
serverDest : string *
?overwrite : bool
(* Defaults:
let _overwrite = defaultArg overwrite false
*)
-> FWRetVal
Parameters
- ftpHeader
- Type: Koden.Utils.FTPClientFTPHeader
The FTP header. - localFile
- Type: SystemString
The local file. - serverDest
- Type: SystemString
The server file. - overwrite (Optional)
- Type: SystemBoolean
if set to true [overwrite].
Return Value
Type:
FWRetVal[Missing <returns> documentation for "M:Koden.Utils.FTPClient.FTP.PutFile(Koden.Utils.FTPClient.FTPHeader,System.String,System.String,System.Boolean)"]
See Also