' 경로를 만든다.
Public Function MakeDir(ByVal strpath As String) As Boolean
If strpath = "" Then Exit Function
strpath = Replace(strpath, "/", "\")
If Right(strpath, 1) = "\" Then strpath = Mid(strpath, 0, Len(strpath) - 1)
If Dir(strpath, vbDirectory) <> "" Then
MakeDir = True
Exit Function
End If
MakeDir = MakeDir(ExtractDir(strpath))
MkDir (strpath)
End Function
Public Function MakeDir(ByVal strpath As String) As Boolean
If strpath = "" Then Exit Function
strpath = Replace(strpath, "/", "\")
If Right(strpath, 1) = "\" Then strpath = Mid(strpath, 0, Len(strpath) - 1)
If Dir(strpath, vbDirectory) <> "" Then
MakeDir = True
Exit Function
End If
MakeDir = MakeDir(ExtractDir(strpath))
MkDir (strpath)
End Function
반응형
'Dev > Visual Basic' 카테고리의 다른 글
VB 에서 오라클 DB 조회 (0) | 2006.12.27 |
---|---|
MDI에서 특정 자식창을 하나만 띄우기 (0) | 2003.07.18 |
항상 위 효과 내기 (0) | 2003.07.18 |
전체 경로를 받아 파일명 또는 폴더명만 얻기 (0) | 2003.07.18 |