tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Java > IO > Create New File

Create New File 

The following example shows how to create a new and empty file.

File Name  :  
com/bethecoder/tutorials/io/CreateNewFile.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.io;

import java.io.File;
import java.io.IOException;

public class CreateNewFile {

  /**
   @param args
   */
  public static void main(String[] args) {

    File newFile2Create = new File("C:\\xyz.txt");
    
    //creates a new, empty file named by this abstract pathname if and only if 
    //a file with this name does not yet exist. The check for the existence of 
    //the file and the creation of the file if it does not exist are a single 
    //operation that is atomic with respect to all other filesystem activities 
    //that might affect the file. 
    try {
      System.out.println("New file created successfully : " + newFile2Create.createNewFile());
    catch (IOException e) {
      e.printStackTrace();
    }
  }

}
   

It gives the following output,
New file created successfully : true



 
  


  
bl  br