1

Мне нужно знать командную строку для создания символической ссылки на следующую папку: F:\screenshots\games .

Игра расположена в C:\users\public\games и носит название символической ссылки Pictures .

Какой будет командная строка?

1 ответ1

0

Используйте mklink

mklink [[/d] | [/h] | [/j]] <Link> <Target>

/D – used to create symbolic links for directories (d for directory)
/H – used to create hard links (h for hard link)
/J – used to create directory junction (j for junction)
Link - specifies the new symbolic link name.
Target - specifies the path (relative or absolute) that the new link
         refers to.

В вашем случае cd на C:\users\public\games , а затем:

MKlink /D Pictures F:\screenshots\games

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .