-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adroid write to files. #42
Comments
I can confirm this issue on MemoPad 7 with Android 4.4.2. |
I have the same problem.
I checked my code, and it is fine. It asks for the correct path and filename. |
@Emasoft I'm having a similar issue on uwp. I'm thinking it may have to do with file permissions. |
@Emasoft I wrote up the bug for UWP, which I supppose is different from your Android bug. issue 58 I was having a bug similar to yours on Android the other day. I think part of it was that I was writing the files in parallell. Once I blocked the write function with a SemaphoreSlim, I was able to read the files after writing them.
|
Having problems writing then reading files Xamarian Android application.
Its the same issue posted to here....
http://stackoverflow.com/questions/21999804/cross-platform-solution-to-isolated-storage-in-pcl/37439443#37439443
I have my permissions set correctly to read/write external storage in my android manifest file.
Reading the data I get this exception
ex {PCLStorage.Exceptions.FileNotFoundException: File does not exist: /data/data/com.bconnect.expo/files…} PCLStorage.Exceptions.FileNotFoundException
This is after the write appears to be successful.
Shouldn't the file name be '/Android/data/com.bconnect.expo/files....' ?
Here is my code, as you can see I'm not doing really anything more than what the examples give
The text was updated successfully, but these errors were encountered: