I'm trying the following to create a File:
java.io.File myFile = play.Application.getFile("/public/myFiles/myFile.txt");
which is causing the error:
non-static method getFile(java.lang.String) cannot be referenced from a static context
how do use the getFile method to return what I want?