将文件保存到 android 上的持久数据路径后如何访问文件?我查看了所有移动文件,但找不到保存的文件。当我运行调试时,它指向我的手机上不存在的位置?存储/模拟/0
对于代码,我使用流编写器
string[][] output = new string[rowData.Count][];
for (int i = 0; i < output.Length; i++)
{
output[i] = rowData[i];
}
int length = output.GetLength(0);
string delimiter = ",";
StringBuilder sb = new StringBuilder();
for (int index = 0; index < length; index++)
sb.AppendLine(string.Join(delimiter, output[index]));
string filePath = getPath();
StreamWriter outStream = System.IO.File.CreateText(Application.persistentDataPath +
"/results" + settings.IdentificationNumber + ".csv");
outStream.WriteLine(sb);
outStream.Close();
我对让相同的代码在 PC 上工作没有任何问题。
慕娘9325324
相关分类