Some questions about working with files on android. Is it possible to read files from project? Like from "src" directory. Also, how should I create files?
File file = new File("a.txt");
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
Doesn't work here.