iPhone System.IO.File.Exists()无效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iPhone System.IO.File.Exists()无效相关的知识,希望对你有一定的参考价值。
以下指令检查路径中的文件是否存在:
string path = GetiPhoneDocumentsPath();
if (System.IO.File.Exists(path) == false) XmlTextWriter textWriter = new XmlTextWriter(path,null);
然后,如果文件不存在则创建一个新文件,它在单位执行中运行良好,但是当我在iphone中执行程序时,永远不会创建该文件。
这是获取路径的函数:
public static string GetiPhoneDocumentsPath()
{
// Your game has read+write access to /var/mobile/Applications/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Documents
// Application.dataPath returns
// /var/mobile/Applications/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/myappname.app/Data
// Strip "/Data" from path
string path = Application.dataPath.Substring(0, Application.dataPath.Length - 5);
// Strip application name
path = path.Substring(0, path.LastIndexOf('/'));
return path + "/Documents/myFile.xml";
}
答案
得到它了!
FileInfo info = new FileInfo(path);
if (info == null || info.Exists == false) { ... };
以上是关于iPhone System.IO.File.Exists()无效的主要内容,如果未能解决你的问题,请参考以下文章
在 iphone 5 和 iphone 6 中动态设置字体大小