Hololens文件读写

时间:2025-01-22 14:34:32

unity 内勾选 RemovableStorage 选项或 Package.appxmanifest 勾选 可移动存储 选项

uwp app IO操作用 StreamReader 会提示没有权限,如:

 using UnityEngine;
using System.IO;
public class test : MonoBehaviour
{ void Start ()
{
string path = Path.Combine(Application.streamingAssetsPath, "test.txt");
StreamReader s = new StreamReader(path);
string end = s.ReadToEnd();
Debug.Log(end);
} }

结果会报错,uwp应用的IO操作需要用到 StorageFile 类(导出uwp工程后添加 Windows.Storage 命名空间才能够使用StorageFile类),或者使用 File 类的静态方法,www 读取还没尝试过

参考资料:win10 UWP读写文件   

                 win10 uwp 读取文本GBK错误

                 Hololens开发初探踩的一些坑