Android does not have its own file browser, but there are many third-party ones (Astro comes to mind). The Android file system is Linux; the path separator is /, and FS grows from a single root called /. So you have application packages in / data / apps, etc. If the phone is not locked ("rooted"), you will not be able to see the entire file system - permissions interfere. This applies to all Android applications, they are isolated by the sandbox, that is, they do not get access to the entire file system. There are API calls to get the path to the current application sandbox.
source
share