FtpClientConnection.GetListing(String[], String[]) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
.