Windows XP中的符号链接

wil*_*son 16 unix windows

问题是如何像在*nix中那样在windows中制作像symlink这样的类似的东西.在控制台中写入文件的整个路径真的很难(即使使用[tab],如果你需要更改语言,也不是这样).在PATH中添加所有内容也很累人.使符号链接运行一个命令会很棒.

其实我正在寻找控制台应用程序.

typ*_*unt 13

他们被称为交叉点

如果你想要一个GUI为你做...


wil*_*son 8

我首先使用subst,因为它使路径更短.为了做到这一点,但是如同典型的那样安装虚拟磁盘,我使用了Sysinternals 的连接实用程序.

要创建符号链接,请使用以下命令:

junction Disk:\path\to\mount\point Disk:\path\to\something\to\mount
Run Code Online (Sandbox Code Playgroud)

要删除它,请使用-d开关:

junction -d Disk:\path\to\mount\point Disk:\path\to\something\to\mount
Run Code Online (Sandbox Code Playgroud)


Aeo*_*eon 6

当我在Windows上时,我曾经使用过硬链接shell扩展.不确定这是否是同一个,但试试这个:Link Shell Extension.