Uploads the specified local files and/or directories to the directory on the FTP server.

Namespace:  Rebex.Net
Assembly:  Rebex.Ftp (in Rebex.Ftp.dll)

Syntax

Visual Basic
Public Sub Upload ( _
	set As FileSet, _
	remoteDirectoryPath As String, _
	transferMethod As TransferMethod, _
	existingFileMode As ActionOnExistingFiles _
)
C#
public void Upload(
	FileSet set,
	string remoteDirectoryPath,
	TransferMethod transferMethod,
	ActionOnExistingFiles existingFileMode
)

Parameters

set
Type: Rebex.IO..::..FileSet
A filtering set which specifies local files and directories to be uploaded.
remoteDirectoryPath
Type: System..::..String
The path of the remote directory. This cannot be a file.
transferMethod
Type: Rebex.IO..::..TransferMethod
Specifies whether to copy or move source items.
existingFileMode
Type: Rebex.IO..::..ActionOnExistingFiles
Specifies the default behavior for files that already exists at the server.

Implements

IFtp..::..Upload(FileSet, String, TransferMethod, ActionOnExistingFiles)

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also