I need to save some files in the device's "data" folder, because some other application needs them.
I've tried
new File("/data/filename").createNewFile();
but I get
java.io.IOException: open failed: ENOENT (No such file or directory)
Is the path I'm using wrong?