Hi.
When my program starts the first time
after the installer installs it It needs
like 10 directorys in its root dir to
function properly. So my question is how
do I make the installer make those directories.
Thanks Alot!
Printable View
Hi.
When my program starts the first time
after the installer installs it It needs
like 10 directorys in its root dir to
function properly. So my question is how
do I make the installer make those directories.
Thanks Alot!
i think there's something called mkdir
like in a command button put mkdir "c:\test1"
If the directory already exists, you will get an error. Use the Dir function to check if it exists already.
Code:If Dir("C:\MyDir", vbDirectory) <> "" Then
Msgbox "Folder exists!"
Else
MkDir "C:\MyDir"
End If