-
현재 디렉터리의 파일 리스트엑셀 2013. 3. 16. 03:08반응형Public Sub ListESY()
Const strFolder As String = ".\"
Const strPattern As String = "*.*"
Dim strFile As String
strFile = Dir(strFolder & strPattern, vbNormal)
Do While Len(strFile) > 0
Debug.Print strFile
MsgBox (strFile)
strFile = Dir
Loop
End Sub
'엑셀' 카테고리의 다른 글
VBA로 xlDown하기 (0) 2013.03.20 셀 삭제하고 한줄 올리기 (0) 2013.03.20 VBA - Range, Cells로 셀 핸들링하기. (0) 2013.03.17 VBA강좌 (0) 2013.03.17 VBA에서 파일 읽어 오기 (0) 2013.03.16