Get installer to create empty folders?
C#
3
Posts
2
Posters
0
Views
1
Watching
-
I have a C# Windows form app with its own installer... I'd like the installer to create several empty subfolders below the install dir that will hold data that will be created by the app... how can this be done...?? thanks, vince
-
Why not just have the app check if the folder exists upon startup and create it if it does not exist? That way, users can delete the folders, and the application will not break.