I want a user to pick a directory to save image files too. I’m new to c#, I’ve got the image thing working with OpenFileDialog, how would I do the directory thing.
Basically, I want it to look like:
Save Directory: C:\PATH….
Maybe a FolderBrowserDialog or OpenDirectoryDialog?
Thanks for any help.
Use the
FolderBrowserDialogto select a folder, or use theSaveFileDialogto pick an individual file for saving.Here is a codeplex.com example of using
FolderBrowserDialog:http://www.codeproject.com/KB/cs/csFolderBrowseDialogEx.aspx