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) {
        File f = new File("c:/test.txt");

        boolean bool = f.exists();

        if (bool) {
            long len = f.length();
            String path = f.getPath();
            System.out.print(path + " file length: " + len);
        }

    }
}