Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Package and Deployment Question 1

Status
Not open for further replies.

Stewart531

Programmer
Feb 18, 2003
36
0
0
US
I'm rather new to the package and deployment wizard. I want to include an empty folder that will be placed in the same directory as my program when you run the installation file. Anyone know how to do this? Thanks.
-Dave
 
No need to include empty folder in your installation.
you can create this folder when your application start for the first time and ignore this creation later if this directory does exist.

private sub Create_Empty_Folder()

If Dir(App.Path & &quot;\FolderName&quot;, 16) <> &quot;FolderName&quot; Then
mkdir App.Path & &quot;FolderName&quot;
End If

Exit Sub

goodluck


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top