Compartir a través de


FtpClientConnection.GetListing Método

Lists the names of directories and files in the specified folder or directory from the FTP server.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public Sub GetListing ( _
    <OutAttribute> ByRef folderNames As String(), _
    <OutAttribute> ByRef fileNames As String() _
)
'Uso
Dim instance As FtpClientConnection 
Dim folderNames As String()
Dim fileNames As String()

instance.GetListing(folderNames, fileNames)
public void GetListing(
    out string[] folderNames,
    out string[] fileNames
)
public:
void GetListing(
    [OutAttribute] array<String^>^% folderNames, 
    [OutAttribute] array<String^>^% fileNames
)
member GetListing : 
        folderNames:string[] byref * 
        fileNames:string[] byref -> unit
public function GetListing(
    folderNames : String[], 
    fileNames : String[]
)

Parámetros

  • folderNames
    Tipo: array<System.String[]%
    An array containing the folders in the current folder.
  • fileNames
    Tipo: array<System.String[]%
    An array containing the files in the current folder.

Comentarios

Both folderNames and fileNames parameters are out parameters.

Ejemplos

The following code example shows how to use the GetListing method.

//Get all folders and files of the directory 
string[] folderNames;
string[] fileNames;
ftpClientConnection.GetListing(out folders, out files); 
'Get all folders and files of the directory 
Dim folderNames() As String
Dim fileNames() As String
ftpClientConnection.GetListing(folders, files)

Vea también

Referencia

FtpClientConnection Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime