I am creating an app in which I would like to make use of hardlinks and symlinks in the Android external memory filesystem. I have tried using the commands
Os.link("oldpath", "newpath");
Os.link("oldpath", "newpath");
However, when I try this, I get this error:
link failed: EPERM (Operation not permitted)
This makes me think that you need root access, although I have seen other people do this same thing, and I would not think that they would have these commands if they needed root. Any ideas?