FileDocCategorySizeDatePackage
Creat.javaAPI DocExample680Sat Nov 25 12:54:54 GMT 2000None

Creat

public class Creat extends Object
Create one or more files by name. The final "e" is omitted in homage to the underlying UNIX system call.
author
Ian F. Darwin, ian@darwinsys.com
version
$Id: Creat.java,v 1.2 2000/11/25 17:54:55 ian Exp $

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)


		// Ensure that a filename (or something) was given in argv[0]
		if (argv.length == 0) {
			System.err.println("Usage: Creat filename");
			System.exit(1);
		}

		for (int i = 0; i< argv.length; i++) {
			// Constructing a File object doesn't affect the disk, but
			// the createNewFile() method does.
			new File(argv[i]).createNewFile();
		}