Downloads the specified files and/or directories from the SFTP server to the local directory.

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

Syntax

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

Parameters

set
Type: Rebex.IO..::..FileSet
A filtering set which specifies remote files and directories to be downloaded.
localDirectoryPath
Type: System..::..String
The path of the local directory. This must be a directory.
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 local directory.

Implements

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

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also