Jonh Geek
Jonh Geek

Reputation: 23

How can I create folders during installation process?

I know that some folders will create during the setup process by using Setup Project, but I want to create another folder. For example, in C:\Users\User Name\Document.Plus,i want to use code to create it. I'm new to programming. I hope you will help me to achieve it. Thanks

Upvotes: 2

Views: 225

Answers (1)

Vijunav Vastivch
Vijunav Vastivch

Reputation: 4211

There's some third Party tool to create an executable file:

  1. If the tool has an option to create a new folder then you are lucky.
  2. You can create a folder in your code-behind when your project opens the first time, if you have the right permissions that target the directory you want.

I suggest do create a folder upon your Project run on the first time using Code Behind

Upvotes: 1

Related Questions