Java Path Exist nio exists(Path path, LinkOption... options)

Here you can find the source of exists(Path path, LinkOption... options)

Description

exists

License

Apache License

Declaration

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

Method Source Code

//package com.java2s;
//License from project: Apache License 

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

import java.nio.file.Path;

public class Main {
    public static boolean exists(Path path, LinkOption... options) {
        return Files.exists(path, options);
    }//w  ww  .  j  av a2  s . co m
}

Related

  1. directoryExist(String path)
  2. ensureDirectoryExists(final Path fileLocation)
  3. exist(Path... paths)
  4. exists(Path file)
  5. exists(Path path)
  6. exists(Path value)
  7. exists(Path... files)
  8. exists(String path)
  9. existsAndIsDirectory(Path path)