다음을 통해 공유


FtpClientConnection.GetListing(String[], String[]) 메서드

정의

FTP 서버의 지정한 폴더 또는 디렉터리에 있는 디렉터리 및 파일 이름을 나열합니다.

public:
 void GetListing([Runtime::InteropServices::Out] cli::array <System::String ^> ^ % folderNames, [Runtime::InteropServices::Out] cli::array <System::String ^> ^ % fileNames);
public void GetListing (out string[] folderNames, out string[] fileNames);
member this.GetListing : String[] * String[] -> unit
Public Sub GetListing (ByRef folderNames As String(), ByRef fileNames As String())

매개 변수

folderNames
String[]

현재 폴더에 포함된 폴더로 이루어진 배열입니다.

fileNames
String[]

현재 폴더에 포함된 파일로 이루어진 배열입니다.

예제

다음 코드 예제에서는 GetListing 메서드를 사용하는 방법을 보여 줍니다.

//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)  

설명

매개 변수와 fileNames 매개 변수는 모두 folderNames 매개 변수입니다out.

적용 대상