pwd -- print working directory (aka where r u?) 
 informations sur le repertoire actuel
<%
  java.io.File f = new java.io.File(".");
 %>
Répertoire courant <%= f.getCanonicalPath() %>
Listing:
- 
<% 
  String[] list = f.list();
  for (int i=0; i