Package de.waldheinz.fs.util

Examples of de.waldheinz.fs.util.FileDisk


      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) {
View Full Code Here

TOP

Related Classes of de.waldheinz.fs.util.FileDisk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.