How to get the full path string from a SaveFileDialog? SaveFileDialog.FileName only gives me the filename with extension. I have looked into SaveFileDialog on MSDN, but I don’t see any property does that.
I need to return “C:\Folder1\subFolder2\File004.sdf” not just “File004.sf”
“Gets or sets a string containing the full path of the file selected in a file dialog.” is what the MSDN article you linked says for
FileNameproperty. Plus,FileNamehas always given me the full file path.