012. xfnGetFileList
xfnGetFileList 함수
xfnGetFileList 함수
지정한 폴더의 파일 목록을 반환해 줍니다.
반환할 타입은 xProperties로 반환됩니다.
폴더 마지막에 '\'를 삽입하지 않습니다.
구문
구문
xfnGetFileList(ByVal strFolderPath As String) As xProperties
반환값
반환값
성공 : 파일 목록이 담긴 xProperties 객체가 반환됩니다.
요약 : Nothing이 반환됩니다.
참고
참고
xProperties는 가변적인 컬렉션 개체 입니다.
예제
예제
코드
Private Sub Command2_Click()
Dim xPTest As xProperties
Dim xPdet As xProperty
Set xPTest = xfnGetFileList("C:\Test")
For Each xPdet In xPTest
Debug.Print xPdet.Value
Next
End Sub
----------------결과값--------------------
Temp.txt
StringNum1.txt
_Result.txt
구성요소
strFolderPath
설 명
폴더 경로를 나타냅니다.