Skip to content

Instantly share code, notes, and snippets.

@tibraga
Created June 9, 2014 23:34
Show Gist options
  • Select an option

  • Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.

Select an option

Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.

Revisions

  1. tibraga created this gist Jun 9, 2014.
    24 changes: 24 additions & 0 deletions gistfile1.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    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();
    }
    }
    }