在Java中获取文件创建者/所有者属性

我正在尝试读取文件列表并找到创建该文件的用户。 用* nix系统,你可以做类似的事情

Map<String, Object> attrs = Files.readAttributes(Paths.get(filename), "posix:*");

但是,在Windows系统上尝试它时,出现错误,因为Windows无法访问POSIX属性。 您可以通过执行以下操作来获得“常规”(非POSIX)属性:

attrs = Files.readAttributes(Paths.get(filename), "*");

但该文件的创建者不包含在该列表中。

有什么方法可以找出在Windows上运行的Java程序中谁创建了这个文件?


我相信你可以使用Files.getOwner(Path, LinkOption...)来获取当前所有者(也可能是创建者)

Path path = Paths.get("c:pathtofile.ext");
try {
    UserPrincipal owner = Files.getOwner(path, LinkOption.NOFOLLOW_LINKS);
    String username = owner.getName();
} catch (IOException e) {
    e.printStackTrace();
}

如果它是支持FileOwnerAttributeView的文件系统,这应该工作。 此文件属性视图提供对文件所有者的文件属性的访问。


您可以使用FileOwnerAttributeView获取所有者信息:

Path filePath = Paths.get("your_file_path_goes_here");
FileOwnerAttributeView ownerInfo = Files.getFileAttributeView(filePath,  FileOwnerAttributeView.class);
UserPrincipal fileOwner = ownerInfo.getOwner();
System.out.println("File Owned by: " + fileOwner.getName());
链接地址: http://www.djcxy.com/p/23919.html

上一篇: getting file creator/owner attributes in Java

下一篇: ActiveRecord and NoSQL