Android How to Resolve Read Only File System #19064
Answered
by
thevortexcloud
J0nathan550
asked this question in
Q&A
-
Hello, I am trying to move from temp files of android file to desired path in Android. (Downloads folder of Android) but it crashes saying that |
Beta Was this translation helpful? Give feedback.
Answered by
thevortexcloud
Jun 17, 2025
Replies: 2 comments 4 replies
-
You probably need to ask for permissions. Android permissions are very complicated. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I don't think so, read only is for entire OS (got to be) otherwise it would said permission denied. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well assuming you are trying to write to
/
then that would be the root. Which is not writeable at all (at least not without root access, which no normal android device will have). If you want to write to the actual documents you need to use Storage Access Framework or give your app permission to write to all other locations.https://developer.android.com/training/data-storage/shared/documents-files
The android file system is also weirdly laid out and varies by device. Generally user files are under
/sdcard
. But it might be also mounted under one of several other locations. A lot of this can also be hard to workout without a device that is rooted since you will get a lot of access denied e…