如何在Windows中创建符号链接?

前端之家收集整理的这篇文章主要介绍了如何在Windows中创建符号链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Windows Vista添加了创建文件和目录的符号链接功能.如何创建符号链接以及支持它的Windows的当前使用者和服务器版本是什么?
您可以使用命令行实用程序mklink创建符号链接.
MKLINK [[/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 bloghowtogeek.com上阅读有关此新功能的更多信息.

原文链接:https://www.f2er.com/windows/370819.html

猜你在找的Windows相关文章