Condividi tramite


FtpClientConnection.ReceiveFiles(String[], String, Boolean, Boolean) Metodo

Definizione

Riceve i file dal server FTP (File Transfer Protocol).

public:
 void ReceiveFiles(cli::array <System::String ^> ^ remoteFileNames, System::String ^ localPath, bool overwrite, bool isTransferAscii);
public void ReceiveFiles (string[] remoteFileNames, string localPath, bool overwrite, bool isTransferAscii);
member this.ReceiveFiles : string[] * string * bool * bool -> unit
Public Sub ReceiveFiles (remoteFileNames As String(), localPath As String, overwrite As Boolean, isTransferAscii As Boolean)

Parametri

remoteFileNames
String[]

File nel server FTP da ricevere.

localPath
String

Percorso locale in cui si desidera ricevere i file remoti.

overwrite
Boolean

Specifica se sovrascrivere i file, quando i file già esistono nel computer locale. Il valore true indica che l'attività sovrascriverà i file esistenti.

isTransferAscii
Boolean

Specifica se è necessario ricevere i file in modalità ASCII. Il valore true indica che i file devono essere ricevuti in modalità ASCII.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo ReceiveFiles.

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)  

Commenti

I caratteri jolly sono consentiti. Ad esempio, la ricezione da un remoteFileNames oggetto di /MyFolder/MyFiles*.* recupererà da tutti i file nella directory MyFolder che iniziano con i caratteri MyFiles.

Si applica a