Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.File;

public class Main {
    public static void main(String[] args) throws Exception {

        // create new files
        File f = new File("test.txt");

        // create new file in the system
        f.createNewFile();

        // tests if file exists
        boolean bool = f.exists();

        System.out.println("File exists: " + bool);

    }
}