I'm writing a Mono application and would like to find the full path of the Documents folder - e.g. /Users/johnsmith/Documents/. What's the best way to achieve this?
views:
57answers:
1
+2
A:
You can do this:
string doc_path = Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.Personal), "Documents");
(Btw, for MonoTouch, It's just Environment.GetFolderPath (Environment.SpecialFolder.Personal)
).
Gonzalo
2009-12-19 20:09:34