JSP Java Tutorial

<%@ page  import="java.io.*" %>

    
        Index of Files
    
    
        

Index of Files


        Click a file to open/download it...
        <% 
            String file = application.getRealPath("/"); 
            File file1 = new File(file);
            String [] fileNames = file1.list();
            File [] fileObjects= file1.listFiles();
        %>
        

            <%
                for (int i = 0; i < fileObjects.length; i++) {
                    if(!fileObjects[i].isDirectory()){
            %>
            

  •           "><%= fileNames[i] %>
                  
              (<%= Long.toString(fileObjects[i].length()) %> bytes long)
            <%
                    }
                }
            %>