我知道可以使用 Files.setOwner 设置文件的所有者:

Files.setOwner(Path path, UserPrincipal owner);

但是,POSIX组又如何呢? API中没有such Files.setGroup()方法,甚至没有使用FileOwnerAttributeView也可以,因为也只有setOwner

有可能吗?

最佳答案

如果您的应用程序仅在POSIX系统上运行,则有PosixFileAttributeView.setGroup()

10-08 10:58