I am saving a file to System.Environment.SpecialFolder.Personal in Xamarin, it appears to succeed, because I can immediately pull data from the file. However, I cannot browse and find this file on my phone, where exactly is this elusive 'Personal' folder.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
The System.Environment.SpecialFolder.Personal
type maps to the path /data/data/[your.package.name]/files
. This is a private directory to your application so you won't be able to see these files using a file browser unless it has root privileges.
You can inspect these files through adb through the following commands:
adb shell
run-as your.package.name
cd files