https://www.howtogeek.com/howto/16226/complete-guide-to-symbolic-links-symlinks-on-windows-or-linux/
Without any extra options, mklink creates a symbolic link to a file. The below command creates a symbolic, or “soft”, link at Link pointing to the file Target :
mklink Link Target
Use /D when you want to create a soft link pointing to a directory. like so:
mklink /D Link Target
Use /H when you want to create a hard link pointing to a file:
mklink /H Link Target
Use /J to create a hard link pointing to a directory, also known as a directory junction:
mklink /J Link Target
'Computer' 카테고리의 다른 글
윈도우 10 컴퓨터 발열 감소 방법 (0) | 2020.10.31 |
---|---|
(PowerShell) 포트 테스트 (0) | 2020.10.25 |
저장소 통채로 복사하기 (bitbucket to github) (0) | 2020.04.10 |
WinWorld: Visual C++ 6.x (0) | 2020.03.01 |
Show most used apps setting is disabled or grayed out in Windows 10 (0) | 2020.02.27 |