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) {

        // create new file
        File f = new File("c:/test.txt");

        // true if the file path is a hidden file
        boolean bool = f.isHidden();

        // get the path
        String path = f.getPath();

        System.out.print(path + " is file hidden? " + bool);

    }
}