I noticed that Java 7 has added a lot of new useful file operations with the new Paths and Files etc. classes in NIO. However, it seems that Java 7 has only added file operations to handle soft links or created hard links.
Is there a way to identify (not just create) hard links using standard Java without bringing in any third party libraries?
I've seen the "unix:nlink" question and have updated to be more specific. This view does not work in a Windows environment.
I suppose the heart of the issue lies in whether or not Java can get inode information from the OS and even with the new libraries I believe the answer to be No, unless someone knows otherwise.