-
I have a app that use SQLite, the file path is:
And I did the backup function:
I found that the app works well on Windows, but not on Android. The point is Yes, now I understand that I can't use |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Android implementation of |
Beta Was this translation helpful? Give feedback.
-
I try And I try |
Beta Was this translation helpful? Give feedback.
-
Considering that the database API works fine, I guess I can use the lowest-level API: |
Beta Was this translation helpful? Give feedback.
Considering that the database API works fine, I guess I can use the lowest-level API:
FileStream
.await using var localStream = new FileStream(MyDbService.DatabasePath, FileMode.Open);
It works!