PCLStorage icon indicating copy to clipboard operation
PCLStorage copied to clipboard

PCL Storage - Portable Storage APIs

Results 54 PCLStorage issues
Sort by recently updated
recently updated
newest added

Hey everyone, I am using PCLStorage to interact with local files on both Android and iOS platforms. I am using the following code snippet. ``` IFolder rootFolder = await FileSystem.Current.GetFolderFromPathAsync(path);...

I used the sample code to test the package. It works fine! but I can't find the file "MyFile.txt" on my phone. If I use the App to read the...

ITNOA Hi, When I try to check exists file such as below code ``` C# public static async Task GetStreamAsync(string path) { IFolder rootFolder = FileSystem.Current.LocalStorage; ExistenceCheckResult isExistFile = await...

I am creating project for Xamarin-forms Tizen. I am not able to integrate this lib with Tizen project. It's working perfectly fine with Android and WPF platform. Is it possible...

Hey Daniel, we got in some cases an error. At the most times we got it when the app is in background. Do you know something about this kind of...

Is there a way to convert the IFile object back to IStorageFile? I'm using `new PCLStorage.WinRTFile(file)` to create an IFile reference from a StorageFile, but I don't see a way...

You just have to take a look to see that this project isn't even maintained.

In UWP, the following code would return `ExistenceCheckResult.NotFound`. In Desktop, `LocalStorage` is essentially ignored in the code below, and the result returned is `ExistenceCheckResult.FileExists` ... var result = await FileSystem.Current.LocalStorage.CheckExistsAsync("e:\\dir1\\dir2\\file.xml");...

@dsplaisted It would be great if we can expose properties on IFile and IFolder which allowed us to get the creation and modified date of a folder/file.