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.
1 public class AddPhotoPage {
2
3 @Inject
4 private Context c;
5
6 public void onSuccess()
7 {
8 File webapp = c.getRealFile("/");
9 }
10 }