How to get the actual path to the directory junction folder?

A few days ago I create a junction directory using a command mklinkin Windows 7. Now I want to know what a real link is according to this directory connection. How can I achieve this without third-party tools ?

+4
source share
2 answers

Go to the folder containing your connection in cmd.exe and run:

dir /a:d

It must specify all directories in the folder, including the connection, and must provide the real location of the connection.

+6
source

It seems to me that you can do this with the links you provide:

NTFSLinksView.exe /folder <foldername> /scomma links.csv

type links.csv

:

NTFSLinksView.exe /folder <foldername> /scomma links.csv && type links.csv
0

Source: https://habr.com/ru/post/1529683/


All Articles