What is the result of the program below if the file dir/file.txt exists and has some content?
File file = new File("dir/file.txt");
if (file.createNewFile()) {
System.out.println("File is created");
} else {
System.out.println("File is not created");
}