读取 .txt 文件 c#
Read .txt file c#
嗨,我无法获取 .txt 文件的内容..
File.Exists(Application.persistentDataPath + "/score.txt")
returns "true",但无法访问以下内容:
string[] lines = File.ReadAllLines(Application.persistentDataPath + "/score.txt");
两者都不是:
using (StreamReader sr = new StreamReader(Application.persistentDataPath + "/score.txt")) {
string line = sr.ReadToEnd();
Debug.Log(line);
}
有什么解决办法吗?
好的,我修好了,问题是
Application.persistentDataPath + "/score.txt"
将我定向到一个实际上不在我的项目目录中的空文件。
所以 Application.persistentDataPath 将我引导到 Appdata/ 并创建一个空文件,但它还在项目目录中创建了一个文件,代码将文本放入其中。
仍然感谢您的帮助。
嗨,我无法获取 .txt 文件的内容..
File.Exists(Application.persistentDataPath + "/score.txt")
returns "true",但无法访问以下内容:
string[] lines = File.ReadAllLines(Application.persistentDataPath + "/score.txt");
两者都不是:
using (StreamReader sr = new StreamReader(Application.persistentDataPath + "/score.txt")) {
string line = sr.ReadToEnd();
Debug.Log(line);
}
有什么解决办法吗?
好的,我修好了,问题是
Application.persistentDataPath + "/score.txt"
将我定向到一个实际上不在我的项目目录中的空文件。 所以 Application.persistentDataPath 将我引导到 Appdata/ 并创建一个空文件,但它还在项目目录中创建了一个文件,代码将文本放入其中。 仍然感谢您的帮助。