If I've created a directory link via mklink, how can I figure out if it was a symbolic link, a directory junction, or a hard link (ie whether I used /d, /j, or /h)?

link|improve this question
You can't create a directory hard link. Apart from that, heavyd's answer is correct. – efotinis Feb 9 '10 at 10:27
feedback

1 Answer

up vote 4 down vote accepted

At the command line you can type

dir /a

You should see something similar to:

02/08/2010  11:40 PM    <SYMLINKD>     d1 [..\targetdir1] 
02/08/2010  11:41 PM    <JUNCTION>     d2 [..\targetdir2]

This shows a directory symlink (/D) and a directory junction (/J)

link|improve this answer
Please help me with this question thanks superuser.com/questions/343074/… – Pacerier Oct 5 '11 at 3:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.