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:");

        boolean bool = f.isDirectory();

        String path = f.getPath();

        System.out.println(path + " is directory? " + bool);

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

        bool = f.isDirectory();

        path = f.getPath();

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

    }
}