我知道可以使用 Files.setOwner
设置文件的所有者:
Files.setOwner(Path path, UserPrincipal owner);
但是,POSIX组又如何呢? API中没有
such Files.setGroup()
方法,甚至没有使用FileOwnerAttributeView
也可以,因为也只有setOwner
。有可能吗?
最佳答案
如果您的应用程序仅在POSIX
系统上运行,则有PosixFileAttributeView.setGroup()。