美文网首页
unity读写文件

unity读写文件

作者: 洪福齐天999 | 来源:发表于2017-10-29 21:59 被阅读0次

    读文件

    private void ReadFile(string country){

    StreamReader sr = null;

    try {

    sr = File.OpenText (Application.persistentDataPath + "//" + "FileName" + country + ".txt");

    AllData = sr.ReadToEnd ();

    //dosomething

    } catch (Exception e) {

    Debug.Log("error:"+e.Message);

    }

    sr.Close ();

    sr.Dispose ();

    }

    写文件

    public void WriteToFile(){

    File.Delete (Application.persistentDataPath+"//"+"FileName"+".txt");

    StreamWriter sw;

    FileInfo fi=new FileInfo(Application.persistentDataPath+"//"+"FileName"+".txt");

    if(!fi.Exists)          {

    sw = fi.CreateText();

    } else{

    sw = fi.AppendText();

    }

    sw.Write ("");

    sw.Flush();

    sw.Close();

    }

    相关文章

      网友评论

          本文标题:unity读写文件

          本文链接:https://www.haomeiwen.com/subject/sidupxtx.html