Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是这个问题的延续。有没有办法hardlink, owner & group使用java6进行计算?
hardlink, owner & group
在 Java 6 中,您所能做的就是调用Runtime.exec("ls -li "+filename)并解析它的输出。
Runtime.exec("ls -li "+filename)
Java 7 对文件权限和链接的支持更多,但我没有使用过这些 API。