首页javapathJava I/O - 如何检查路径是否为常规文件/目录,而不遵循符号链接

Java I/O - 如何检查路径是否为常规文件/目录,而不遵循符号链接

我们想知道如何检查路径是否为常规文件/目录,而不遵循符号链接。
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) throws Exception {
    Path path = FileSystems.getDefault().getPath("/home/docs/users.txt");
    System.out.println(Files.isRegularFile(path, LinkOption.NOFOLLOW_LINKS));
  }
}