Created
June 9, 2014 23:34
-
-
Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.
CreateFileExample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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