Java IO Tutorial - Java Files.isRegularFile(Path path, LinkOption ... options)








Syntax

Files.isRegularFile(Path path, LinkOption ... options) has the following syntax.

public static boolean isRegularFile(Path path,   LinkOption ... options)

Example

In the following code shows how to use Files.isRegularFile(Path path, LinkOption ... options) method.

/*from www . j a va2s . c o m*/

import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.Path;

public class Main {

    public static void main(String[] args) {

        Path path = FileSystems.getDefault().getPath("C:/tutorial/Java/JavaFX", "Demo.txt");

        //method 1
        boolean is_regular = Files.isRegularFile(path, LinkOption.NOFOLLOW_LINKS);
    }
}