'-----------------------------------------------------------
' FUNCTION: MakePathAux
'
' Creates the specified directory path.
'
' No user interaction occurs if an error is encountered.
' If user interaction is desired, use the related
' MakePathAux() function.
'
' IN: [strDirName] - name of the dir path to make
'
' Returns: True if successful, False if error.
'-----------------------------------------------------------
'
Function MakePathAux(ByVal strDirName As String) As Boolean
Dim strPath As String
Dim intOffset As Integer
Dim intAnchor As Integer
Dim strOldPath As String
On Error Resume Next
'
'Add trailing backslash
'
If Right$(strDirName, 1) <> gstrSEP_DIR Then
strDirName = strDirName & gstrSEP_DIR
End If
strOldPath = CurDir$
MakePathAux = False
intAnchor = 0
'
'Loop and make each subdir of the path separately.
'
intOffset = InStr(intAnchor + 1, strDirName, gstrSEP_DIR)
intAnchor = intOffset 'Start with at least one backslash, i.e. "C:\FirstDir"
Do
intOffset = InStr(intAnchor + 1, strDirName, gstrSEP_DIR)
intAnchor = intOffset
If intAnchor > 0 Then
strPath = Left$(strDirName, intOffset - 1)
' Determine if this directory already exists
Err = 0
ChDir strPath
If Err Then
' We must create this directory
Err = 0
#If LOGGING Then
NewAction gstrKEY_CREATEDIR, """" & strPath & """"
#End If
MkDir strPath
#If LOGGING Then
If Err Then
LogError ResolveResString(resMAKEDIR) & " " & strPath
AbortAction
GoTo Done
Else
CommitAction
End If
#End If
End If
End If
Loop Until intAnchor = 0
MakePathAux = True
Done:
ChDir strOldPath
Err = 0
End Function
Share:
These icons link to social bookmarking sites where readers can share and discover new web pages.
