Reputation: 7063
Can anyone please explain the structure of the folder structure for all the below mentioned SpecialFolder in Xamarin iOS?
Thanks
Upvotes: 1
Views: 1292
Reputation: 3461
It appears the Xamarin API documentation is missing for this enum.
Here are a few of the values but not all: Environment.SpecialFolder.ApplicationData is $HOME/.config, which is /data/data/@PACKAGE_NAME@/files/.config.
Environment.SpecialFolder.LocalApplicationData is $HOME/.local/share, which is /data/data/@PACKAGE_NAME@/files/.local/share.
Environment.SpecialFolder.Personal is $HOME, which is /data/data/@PACKAGE_NAME@/files.
Upvotes: 1