我知道这已经出现了一段时间,但我无法用我尝试的任何解决方案解决错误。
我刚开始测试我的应用程序 - 将屏幕截图保存到ios设备代码是 -
string GetiPhoneDocumentsPath()
{
string path = Application.dataPath.Substring(0, Application.dataPath.Length - 5);
path = path.Substring(0, path.LastIndexOf("/"));
return path + "/Documents/";
}
string CreateImagesDirectory(string documentsPath) {
//System.IO.File.SetAttributes (documentsPath, FileAttributes.Normal);
string imagePath = documentsPath +"magicimages/";
if (Directory.Exists(imagePath)) {return imagePath;}
DirectoryInfo t = new DirectoryInfo(documentsPath);
//Directory.CreateDirectory(imagePath);
t.CreateSubdirectory("magicimages");
System.IO.File.SetAttributes (imagePath, FileAttributes.Normal);
return imagePath;
}
要文件
Debug.Log("Do nothing actually as we need to save to persistent data path");
string documentsPathIphone = GetiPhoneDocumentsPath();
Debug.Log ("document path" + documentsPathIphone);
string imagePath = CreateImagesDirectory (documentsPathIphone);
//Path = imagePath + fileName;
Debug.Log ("path iphone" + Path);
Debug.Log("Appllicarion data path -->" + Application.dataPath);
//string savepath = Application.dataPath.Replace ("game.app/Data", "/Documents/");
System.IO.File.WriteAllBytes (System.IO.Path.Combine(Path , fileName), screenshot);
假设屏幕截图是bytes []
我得到了例外情况。我正在使用Unity。
我得到的错误是 -
UnauthorizedAccessException:访问路径 "在/ var /容器/捆绑/应用/ 9DA2D489-2037-451E-87D1-FA7354ECD0D1 /文件" 被拒绝。
答案 0 :(得分:4)
您使用 operation.perform(allObjects, (row.getCell(1)+"").toString(), (row.getCell(2)+"").toString(), (row.getCell(3)+"").toString(), (row.getCell(4)+"").toString());
而不是 Application.persistentDataPath
进行保存。请注意,您必须创建一个文件夹并保存在该文件夹中,而不是直接保存到此路径。
所以你保存的最终路径应该是:
Application.dataPath
。
或
Application.persistentDataPath+"Yourfolder/YourFileNale.extension"
。
始终使用Application.persistentDataPath+"Documents/YourFileNale.extension"
组合路径,而不是上面使用的Path.Combine
。