Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Receives files from the File Transfer Protocol (FTP) server.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub ReceiveFiles ( _
remoteFileNames As String(), _
localPath As String, _
overwrite As Boolean, _
isTransferAscii As Boolean _
)
'Usage
Dim instance As FtpClientConnection
Dim remoteFileNames As String()
Dim localPath As String
Dim overwrite As Boolean
Dim isTransferAscii As Boolean
instance.ReceiveFiles(remoteFileNames, _
localPath, overwrite, isTransferAscii)
public void ReceiveFiles(
string[] remoteFileNames,
string localPath,
bool overwrite,
bool isTransferAscii
)
public:
void ReceiveFiles(
array<String^>^ remoteFileNames,
String^ localPath,
bool overwrite,
bool isTransferAscii
)
member ReceiveFiles :
remoteFileNames:string[] *
localPath:string *
overwrite:bool *
isTransferAscii:bool -> unit
public function ReceiveFiles(
remoteFileNames : String[],
localPath : String,
overwrite : boolean,
isTransferAscii : boolean
)
Parameter
- remoteFileNames
Typ: array<System.String[]
The files on the FTP server to receive.
- localPath
Typ: System.String
The local path where you want to receive the remote files.
- overwrite
Typ: System.Boolean
Specifies whether to overwrite the files, if the files already exist on the local computer. A value of true indicates that the task will overwrite existing files.
- isTransferAscii
Typ: System.Boolean
Specifies if files should be received in ASCII mode. A value of true indicates that the files should be received in ASCII mode.
Hinweise
Wild-card characters are allowed. For example, receiving from a remoteFileNames of /MyFolder/MyFiles*.* will retrieve from all files in the MyFolder directory that start with the characters MyFiles.
Beispiele
The following code example shows how to use the ReceiveFiles method.
String [] remoteFileNames = {"myTestFile", "myFTPFile"};
String localPath = "Program Files";
myftpClientConn.ReceiveFiles(remoteFileNames, localPath, true, true);
Dim remoteFileNames() As String = {"myTestFile", "myFTPFile"}
Dim localPath As String = "Program Files"
myftpClientConn.ReceiveFiles(remoteFileNames, localPath, True, True)