33
14
I've created some hard links on my Windows 7 file system using mklink. It was some time ago and I can't remember for sure where, or which files. When I use Explorer, all files look the same. When I use the command line and type "dir", they all look the same.
How do I find hard links? Or how do I determine whether a specific file IS a hard link?
2
Can also use the built-in
– Svish – 2017-07-30T16:53:25.793fsutil hardlink list filename
. (see Sergey's answer)10just as a note, cygwin /bin/find also works. Thanks! – arcyqwerty – 2012-09-18T02:25:47.140
6Just to be clear the "Microsoft
find
" being referenced in the solution here is not the default installed Windows 7. You have to download and install a new Microsoftfind
. Then you can use thatfind
utility. Or install Cygwin'sfind
command like @arcyqwerty (which will probably have better support long term). – Trevor Boyd Smith – 2013-08-13T14:40:48.603