Good day all,
In my application I am allowing the user to browse their computer for an image. I then want to copy the selected file to a directory ("Images") within the application. This is what is causing me trouble.
I tried using string root = AppDomain.CurrentDomain.BaseDirectory;
to find the root and then navigate to my "Images" folder from there but i am getting a DirectoryNotFoundException.
How would one go about finding this directory that is with in my applications root?
Thanks, Kohan.