iPhone System.IO.File.Exists() 不工作
Posted
技术标签:
【中文标题】iPhone System.IO.File.Exists() 不工作【英文标题】:iPhone System.IO.File.Exists() not working 【发布时间】:2011-06-25 04:26:28 【问题描述】:以下指令检查路径中的文件是否存在:
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";
【问题讨论】:
【参考方案1】:知道了!
FileInfo info = new FileInfo(path);
if (info == null || info.Exists == false) ... ;
【讨论】:
以上是关于iPhone System.IO.File.Exists() 不工作的主要内容,如果未能解决你的问题,请参考以下文章
在 iphone 5 和 iphone 6 中动态设置字体大小