persistentDataPath

作者:追风剑情 发布于:2014-9-12 23:13 分类:Unity3d

  1. using UnityEngine;
  2. using System.Collections;
  3. using System.IO;
  4. using System.Text;
  5.  
  6. public class PersistentDataPathTest : MonoBehaviour {
  7.  
  8. string path;
  9.  
  10. void Start () {
  11. //可以把游戏数据持久化到此目录下
  12. //当软件被卸载后,此目录下的数据也会同时被清除掉。
  13. path = Application.persistentDataPath + "/test.txt";
  14. WriteText("test data");
  15. }
  16.  
  17. void WriteText(string content)
  18. {
  19. StreamWriter sw = new StreamWriter(path, false, Encoding.UTF8);
  20. sw.WriteLine(content);
  21. sw.Flush();
  22. sw.Close();
  23. }
  24.  
  25. string ReadText()
  26. {
  27. StreamReader sr = new StreamReader(path);
  28. string content = sr.ReadToEnd();
  29. sr.Close();
  30. return content;
  31. }
  32. }

内置SD卡->Android->data

path.png

IOS只能把资源下载到temporaryCachePath才能通过审核。

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号