无法通过PCL Storage从xamarin便携式文件夹中读取文件

时间:2015-11-02 12:13:48

标签: c# xamarin xamarin.forms portable-class-library file-storage

我正在使用Visual Studio中的Xamarin.Forms可移植项目。我正在使用PCL存储插件 - 应该是非常简单的让我疯狂。 我无法访问任何文件,不能访问我的设备,也不能访问解决方案中的任何文件夹。

我需要一种简单的方法来将现有文件实际读入流或字节数组。 我如何从位于解决方案文件夹中的测试.mp4文件中读取?

我试过这个:

IFile file = await FileSystem.Current.GetFileFromPathAsync("Assets/somefile.png");

尝试从我的winphone设备访问文件夹 - 但尝试以编程方式获取文件时,所有访问都被拒绝。

1 个答案:

答案 0 :(得分:1)

我已经为我的共享项目实施了一个解决方案 通过一些更改,它也应该在PCL项目中工作。 Load images from resources (shared project)