답변:
"mklink"명령을 찾고 있습니다.
문서와의 예로 마이크로 소프트 문서 또는 ss64.com .
링크에서 가져온 예 :
// To create a symbolic link named MyDocs from the root directory to the \Users\User1\Documents directory, type:
mklink /d \MyDocs \Users\User1\Documents
다른 방법이있을 수 있지만 내가 익숙한 방법은 mklink입니다.
C:\>mklink
Creates a symbolic link.
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.
@inf가 말했듯이, mklink는 비스타에 대한 위의 솔루션입니다.
2000 / XP의 경우 fsutil hardlink를 사용할 수 있습니다 . mklink와 달리 하드 링크는 드라이브에서 작동하지 않습니다.
fsutil hardlink
단지 Vista 및 이상입니다. Windows 2000 및 XP에 사용 가능한 이전 버전이 있습니까?
5 년 전부터 powershell 을 명령 해석기로 사용하도록 조언 cmd.exe
하고 레거시 응용 프로그램이되고있는 한이 질문에는 Powershell에 대한 답변이 없습니다.
New-Item -path ~\Desktop\hosts -itemType SymbolicLink -target c:\Windows\System32\Drivers\etc\hosts
이것은 Powershell v5.0부터 작동합니다