I'm using Xamarin for developing my application. I saw a lot of answers but didn't find something which can help me. How can I get the path to the application's files folder which is situated in sdcard0? I want to get something like that: /storage/sdcard0/Android/data/[MyApplication]/files.
I did the following:
var path = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
It gives me "/data/data/App1.Droid/files" but it is not I'm looking for.