Alright well here’s what I mean.
I have this type of script going on.
FileStream file = File.Create (Application.persistentDataPath + "/SaveDataOmni.SV");
It seems that using Application.persistentDataPath creates a save file in the resources folder. So i’m wondering if I could choose my own DataPath/ Directory such as doing sumthing like…
FileStream file = File.Create (Application.dataPath + C:\Game Folder\Memory + "/SaveDataOmni.SV");
But not sure if this is the correct way or not.
Any help would be nice. : )
You can use any location to store your file as long as it is available on your target platform/device. If you take a look at Application.persistentDataPath documentation, you can see how the location changes based on your target platform.
So say you choose to write to C:\ on PC, now it will work as long as the device of user has c:\ but if there is no C drive then it wont be able to create the file and just throw a DriveNotFoundException.
You can use Application.dataPath to get the path to your game data folder and create your folder inside it and write data to it but on iOS this path is read only so you would need to use Application.persistentDataPath there.