vb6.0vba [vb6.0/vba] Function CheckFolder - 경로에 폴더가 없으면 폴더를 만든다
페이지 정보
본문
Public Function CheckFolder(ByVal f_Spec As String)
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject")
If fs.FolderExists(f_Spec) Then
Set fs = Nothing
Else
fs.CreateFolder f_Spec
Set fs = Nothing
End If
End Function
- 이전글[vba] FolderCheck 함수를 이용한 폴더 생성 21.08.09
댓글목록
등록된 댓글이 없습니다.