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








Syntax

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

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

Example

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

//from w w  w.  ja  v  a2  s  .  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");

        boolean path_exists = Files.exists(path, new LinkOption[]{LinkOption.NOFOLLOW_LINKS});
        System.out.println("Exists? " + path_exists);
    }
}

The code above generates the following result.