/* svuk002@ec.auckland.ac.nz */ import java.io.*; import java.sql.Date; public class DirInfo { private String path; /* Path to the directory */ private static String FILENAME = "dinf"; public DirInfo (String path) { this.path = path; processDir (); } /* You need to complete this method */ private void processDir () { } /* You don't need to modify the main method */ public static void main (String[] args) { try { new DirInfo (args[0]); } catch (ArrayIndexOutOfBoundsException e) { printUsage (); } } /* You don't need to modify this method */ public static void printUsage () { System.out.println ("Usage: java DirInfo dir_name"); } }