Program for create operation in file handling:
package com.journaldev.files;
import java.io.File;
import java.io.IOException;
public class FileHandling {
public static void main(String[] args) throws IOException {
File file = new File(“profjayesh.txt”);
boolean createNewFile = file.createNewFile();
System.out.println(“File Created = “+createNewFile);
}
}
OUTPUT:
File Created = true