2324252627282930313233
if (args.length < 2) { System.out.println("Usage: java -jar dir2floppy.jar <sourcedir> <floppyfile>"); System.exit(-1); } FileDisk device = null; //Create the floppy try { device = FileDisk.create(new File(args[1]),(long)1440 * 1024); } catch (IOException e) {