I'm writing a Mono application and would like to find the full path to the "Documents" folder - eg /Users/johnsmith/Documents/. What is the best way to achieve this?
/Users/johnsmith/Documents/
You can do it:
string doc_path = Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.Personal), "Documents");
(Btw, for MonoTouch, it's simple Environment.GetFolderPath (Environment.SpecialFolder.Personal).)
Environment.GetFolderPath (Environment.SpecialFolder.Personal)
Source: https://habr.com/ru/post/1726145/More articles:Pass variable in controller - phpWhat's better? Working with a dataset or database - c #python urllib2 import error help - pythonUsing the webcam button in my own program - c #capture signal using webcam button - pythonhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1726146/postgresql-andor-sql-server-alternatives-to-oracles-syscontext&usg=ALkJrhhEzp2-I38Qy69xmjy1j_rZUtmV7wiPhone color picker - iphoneTask timeIntervalSinceDate - datetimeSubset Generation by Rules - algorithmApache Query for PHP Utility Data Script - performanceAll Articles