- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 PCLStorage
从 PCL
项目获取文件,如下所示。我在 Visual Studio 2015 Professional 中使用 Xamarin。
IFile file = await FileSystem.Current.GetFileFromPathAsync("file\path");
但是我遇到了异常:
System.NotImplementedException: This functionality is not implemented in the portable version of this assembly. You should reference the PCLStorage NuGet package from your main application project in order to reference the platform-specific implementation.
最佳答案
您需要将 PCLStorage NuGet 添加到您的 PCL 和平台特定项目中。
所以如果你有以下解决方案:
PCL
Android
iOS
您需要将它添加到所有这些:
PCL
PCLStorage
Android
PCLStorage
iOS
PCLStorage
为什么?因为 NuGet 使用诱饵和开关技术,其中 PCL 包含带有诱饵的简单外观。在运行时,这会被特定于平台的实现切换。
关于.net - 尝试使用 PCL 项目中的 PCLStorage 读取文件时出现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39998440/
我在 Xamarin 页面上看到了这个包。要访问文件系统,我可以使用 PCLStorage.FileStream.Current.localStorage 来获取设备的当前根存储,但它指的是设备上的哪
我只是这个 PCL 库的新手,我正在使用 Xamarin 开发 iPhone 应用程序,但找不到将其保存在手机上的方法。我得到的最接近的是 PCLStorage,但他只保存文本。还有另一种方法可以用其
我在我的项目中使用 PCLStorage 库,这样我就可以从我的 PCL 库访问文件系统。我正在尝试按如下方式读取文件: static async Task LoadAsync (string fil
我在尝试在 F# 交互中使用 PCLStorage.FileSystem.Current 时遇到 NotImplementedException。 我用 NuGet 下载了 PCLStorage,右键
我已经创建了一个新的 Protable 类库项目。我希望它具有一些 IO 功能,所以我决定使用 PCLStorage 所以在包管理器中,我执行了这个命令:Install-Package PCLStor
我正在为我的 WP8 应用程序使用 PCL 存储库。我正在尝试使用他们网站上的介绍示例; https://pclstorage.codeplex.com/ 代码: IFolder rootFolder
我正在尝试使用 PCLStorage 从 PCL 项目获取文件,如下所示。我在 Visual Studio 2015 Professional 中使用 Xamarin。 IFile file = aw
我正在为我正在处理的 Win8/Wp8 项目使用 PCLStorage。我在 PCL 本身中使用它,并在我的 Win8、Wp8 和 PCL 项目中引用它。在 Win8 中一切都运行良好。 然而,在 W
我在 Xamarin 中创建了一个 PCL 项目,我正在尝试使用 PCLstorage 通过跨平台解决方案保存文件。这是我的代码(来自 PCLstorage website 中的示例) IFolder
我创建了一个跨平台应用程序,并在 .Net、IOS 和 Android 中成功实现。我目前正在开发 Mac 版本。我已经将 90% 的应用程序功能抽象到几个可移植类库中,这些类库在我的应用程序中很常见
我正在使用 Xamarin 平台开发一个 Android 应用程序,我试图在我的本地存储上创建一个文件夹,但我没有成功。 首先,我尝试通过 Xamarin Forms Labs 创建的 FileMan
我是一名优秀的程序员,十分优秀!