{
DiskAllocator da=new DiskAllocator( new File( args[0]));
System.out.println( args[0]+" free:");
da.walkInternalFreeList( System.out);
System.out.println( args[0]+" used:");
da.walkRegions( System.out);
da.close();
}
public static void main( String[] args)