0

I am writing web interfaced file manager for Android. It works really decent I can navigate over Android file system using web browser. However here is one problem, the manager can't step in certain directories, for example if I step into '/cache', method File("/cache").listFiles() return null. I can imagine that the problem leads to permissions. However I know that there is root file manager application, so certainly this problem can be addressed. Could somebody suggest a solution?

Dmitriy R
  • 613
  • 1
  • 5
  • 12

1 Answers1

1

As per this answer, you need to start a subprocess with root permissions and then execute the shell commands via Java I\O.

Community
  • 1
  • 1
ObiWanKenobi
  • 322
  • 3
  • 12