I have an XDocument class with the XML contents already made. I basically want to open a SaveFileDialog, have the user choose a folder (not a file) in which to save the contents as an .xml file.
I'm having some difficulty doing so:
a) How can I use the SaveFileDialog to prompt the user to select a folder? I've only been able to use it to get a user to select a file.
b) How do I extract the chosen path from SaveFileDialog?
c) Once I have the path, how can I save the contents of the XDocument? There's a method called Save that requires a Stream - how do I build the stream using the path? (This might be a basic question, I have almost no IO experience)