Skip to content

Instantly share code, notes, and snippets.

@tibraga
Created June 9, 2014 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.
Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.
CreateFileExample.java
package com.tibraga.io;
import java.io.File;
import java.io.IOException;
public class CreateFileExample
{
public static void main( String[] args )
{
try {
File file = new File("c:\\newfile.txt");
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment