This will get me my iOS app's document root:
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
Is there something similar to get to the Library folder?
This will get me my iOS app's document root:
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
Is there something similar to get to the Library folder?
In iOS8 I used this and it worked:
I got this from Xamarin's page about the iOS file system. It says "iOS 8 NOTE: parts of this document are affected by changes in iOS 8. If your application uses Environment.SpecialFolder or calculates relative paths like "../Documents" you should read this tech note from Apple. Updated information is also available at iOS File System Basics."
Currently (iOS 12) you can retrieve the Library path via:
For directories nested within the Library folder, such as the local app cache, you can do:
Additional directories on Xamarin IOS that may be of interest:
More options can be explored on the Xamarin Docs for File System