I'm trying to save a picture in a relative path of my project. I want it to be in a folder called "images". By using this code
theImage.Save("\\images\\image.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
I realized by testing with an absolute path, that the folder "images" must exist for it to work. problem is, I don't know what the root folder for the project is, so I can manually create the folder in windows explorer. how can I fix my problem?