问题
I'm debugging a Unity game in Android, everything works in the Unity editor. I'm receiving an UnauthorizedAccessException when saving the current game data on Android.
I am writing to the persistentDataPath so I don't understand why access is being blocked.
Here is the console log using Logcat:
<i>AndroidPlayer(motorola_Moto_G_(5)@192.168.0.26)</i> UnauthorizedAccessException:
Access to the path "/current.sg" is denied.
at System.IO.FileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean anonymous, FileOptions options) [0x0028a] in /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.IO/FileStream.cs:320
at System.IO.FileStream..ctor (System.String path, FileMode mode) [0x00000] in <filename unknown>:0
at SaveLoadManager.SaveGame (.Game currentGame) [0x0002a] in F:\Work\Magister\Magister\Magister\Assets\Scripts\SaveLoadManager.cs:16
at PlayerController.FixedUpdate () [0x0058e] in F:\Work\Magister\Magister\Magister\Assets\Scripts\PlayerController.cs:244
The relevant code from PlayerController running in a FixedUpdate() loop:
if (!gameSaved)
{
SaveLoadManager.SaveGame(gameManager.GetComponent<Game>());
gameSaved = true;
}
The SaveGame function from SaveLoadManager:
public static void SaveGame(Game currentGame)
{
string saveGameFileName = Path.DirectorySeparatorChar + "current.sg";
string filePath = Path.Combine(Application.persistentDataPath, saveGameFileName);
BinaryFormatter bf = new BinaryFormatter();
FileStream file = new FileStream(filePath, FileMode.Create);
GameData data = new GameData(currentGame);
bf.Serialize(file, data);
file.Close();
}
The read/write permissions in the AndroidManifest.xml:
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
回答1:
You have to check if the directory exist with Directory.Exists
before writing to that path. If it does not, use Directory.CreateDirectory
to create it.
Note that it's not a good idea to save file directly to Application.persistentDataPath
. You have to create a folder inside it first then put save your file inside that folder. So Application.persistentDataPath/yourcreatedfolder/yourfile.extension
is fine. By doing this, your code will also work on iOS.
This is what that code should look like:
string saveGameFileName = "current";
string filePath = Path.Combine(Application.persistentDataPath, "data");
filePath = Path.Combine(filePath, saveGameFileName + ".sg");
//Create Directory if it does not exist
if (!Directory.Exists(Path.GetDirectoryName(filePath)))
{
Directory.CreateDirectory(Path.GetDirectoryName(filePath));
}
try
{
BinaryFormatter bf = new BinaryFormatter();
FileStream file = new FileStream(filePath, FileMode.Create);
GameData data = new GameData(currentGame);
bf.Serialize(file, data);
file.Close();
Debug.Log("Saved Data to: " + filePath.Replace("/", "\\"));
}
catch (Exception e)
{
Debug.LogWarning("Failed To Save Data to: " + filePath.Replace("/", "\\"));
Debug.LogWarning("Error: " + e.Message);
}
来源:https://stackoverflow.com/questions/46735735/android-unity-c-sharp-unauthorizedaccessexception-writing-save-game-data