I’m trying to write save data to my Android phone’s SD Card. My manifest has and in my build options I set the write access to external(SD card).
When I try to write to a file using
Application.persistentDataPath + @"/GameName/Saves/SaveFile.xml"
I get the exception:
IsolatedStorageException: Could not find a part of the path “/mnt/sdcard/Android/data/package.name/files/GameName/Saves/SaveFile.xml”.
How am I supposed to write save data to the SD Card?