README.md

December 5, 2022 ยท View on GitHub

CreatePath() Function

Description

CreatePath() uses API calls to create a directory tree. A simple application is included to demonstrate its use.

More Info

sPath - A string containing the required directory structure.

Module modCreatePath contains all of the code and API declarations required to use the function in your project.

Boolean - True if the directory structure has been created or already exists, False on error.

Submitted On2001-01-09 01:31:30
ByDave Lambert
LevelAdvanced
User Rating4.0 (16 globes from 4 users)
CompatibilityVB 6.0
CategoryWindows API Call/ Explanation
WorldVisual Basic
Archive FileCODE_UPLOAD13560182001.zip

API Declarations

Public Type SECURITY_ATTRIBUTES
 nLength As Long
 lpSecurityDescriptor As Long
 bInheritHandle As Long
End Type
Declare Function GetFileAttributes Lib "kernel32" Alias "GetFileAttributesA" (ByVal lpFileName As String) As Long
Declare Function CreateDirectory Lib "kernel32" Alias "CreateDirectoryA" (ByVal lpPathName As String, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long