首页javafile_attributeJava 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.isWritable(path));
  }
}