您可以使用命令行实用程序mklink创建符号链接.
原文链接:https://www.f2er.com/windows/370819.htmlMKLINK [[/D] | [/H] | [/J]] Link Target /D Creates a directory symbolic link. Default is a file symbolic link. /H Creates a hard link instead of a symbolic link. /J Creates a Directory Junction. Link specifies the new symbolic link name. Target specifies the path (relative or absolute) that the new link refers to.
自Windows Vista和Windows Server 2008起,可通过mklink获得符号链接.在Windows XP和Windows Server 2003上,您可以使用
fsutil hardlink create <destination filename> <source filename>
根据msdn.microsoft,FAT16 / 32和exFAT不支持符号链接.似乎Windows只支持NTFS-Partitions或NTFS-Partitions.未来的Windows操作系统可能会继续支持mklink.
您可以在Microsoft TechNet,Junfeng Zhang’s blog或howtogeek.com上阅读有关此新功能的更多信息.