0

Say that I setup a symbolic link:

 mklink  /D C:\root\Public\mytextfile.txt C:\root\Public\myothertextfile.txt

is there a way to see what the target of myothertextfile.txt is using the command line?

7ochem
  • 280
  • 1
  • 3
  • 12

1 Answers1

3
C:\root\public>mklink   C:\root\Public\mytextfile.txt C:\root\Public\myothertextfile.txt
symbolic link created for C:\root\Public\mytextfile.txt <<===>> C:\root\Public\myothertextfile.txt

C:\root\public>dir

 Directory of C:\root\public

04/17/2012  05:42 PM    <DIR>          .
04/17/2012  05:42 PM    <DIR>          ..
04/17/2012  05:38 PM                 0 myothertextfile.txt
04/17/2012  05:42 PM    <SYMLINK>      mytextfile.txt [C:\root\Public\myothertextfile.txt]
Greg Askew
  • 35,880
  • 5
  • 54
  • 82