Create a folder path recursively.
'Create folder path recursively
Function GeneratePath(pFolderPath)
GeneratePath = False
If Not wFile.FolderExists(pFolderPath) Then
If GeneratePath(wFile.GetParentFolderName(pFolderPath)) Then
GeneratePath = True
Call wFile.CreateFolder(pFolderPath)
End If
Else
GeneratePath = True
End If
End Function