Issue
I want to know which type of file system my Android device uses.
Also, how do I view the file system properties?
Solution
- Activate USB debugging on your phone.
- Connect your phone via USB to your computer. The phone should display a message like "USB debugging connected".
- Run
adb shell
in your computer's terminal. - Inside the ADB shell, run
mount
. This will show all the mount points and their file system type:
Answered By - insomniac
Answer Checked By - David Goodson (JavaFixing Volunteer)