There is a hint to get the full/real path of webapp directory of your T5 application. It could be useful to upload some files in your webapp context.

public class AddPhotoPage {

@Inject 
private Context c;

public void onSuccess()
{
        File webapp = c.getRealFile("/");
}
}
  • No labels