Hi.. I am developing an application which requires a folder to be created in the project folder.
I am using the following code to create a folder
string path="D:\\SchoolProject\\Image Folder";
System.IO.Directory.CreateDirectory(@path);
Now I want that the folder should be created in the folder where the user is installing the application. How about adding this folder while deploying this project...
Please reply...
Thanx