标签:而不是 microsoft 软硬链接 软链接 exe amp rar 不能 sys
一、mklink
Vista系统开始提供的,创建软链接,硬链接的命令
语法:
/d:建立目录的符号链接 (symbolic link)
/j:建立目录的软链接(联接)(junction)
/h:建立文件的硬链接 (hard link)
D:\>mklink /d "D:\imagesd" "D:\images" (可以指向远程目录)
mklink /d d:\develop \\138.20.1.141\e$\develop
D:\>mklink /h "D:\imagesh.rar" "D:\images.rar" (只能对文件操作,不能跨盘符)
D:\>mklink /j "D:\imagesj" "D:\images" (与junction.exe效果相同)
我一般使用/d
二、junction
junction.exe是一个命令行工具,
是微软提供的创建文件或文件夹软链接(联接)(junction)的工具,
可实现文件或文件夹的映射
Junction v1.06 下载
https://technet.microsoft.com/en-us/sysinternals/bb896768
https://download.sysinternals.com/files/Junction.zip
语法:
创建联接
junction.exe -s 映射后地址 源地址
D:\junction.exe -s D:\imagesjuction D:\images
删除联接
junction.exe -d 映射后地址
D:\junction.exe -d D:\imagesjuction
junction.exe 与 mklink /j 效果相同
Notethat Windows does not support junctions to directories on remote shares.
标签:而不是 microsoft 软硬链接 软链接 exe amp rar 不能 sys
原文地址:https://www.cnblogs.com/duw76/p/9753625.html