创建特定的符号链接

创建特定的符号链接

我需要知道创建到以下文件夹的符号链接的命令行:F:\screenshots\games

游戏位于 ,C:\users\public\games并且符号链接的名称为Pictures

命令行是什么?

答案1

使用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.

对于你的情况,cdC:\users\public\games,然后:

MKlink /D Pictures F:\screenshots\games

相关内容