import java.io.File;
public class Main {
public static void main(String[] args) throws Exception {
File file = new File("C://demo.txt");
boolean blnCreated = false;
blnCreated = file.createNewFile();
System.out.println(blnCreated);
}
}