Last active
October 21, 2016 20:59
-
-
Save matheus-santos/bf5b0e0098a245a50a22bf659952e4f7 to your computer and use it in GitHub Desktop.
Sym link Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM Creating symbolic links in Windows OS | |
REM PREFIX = /D, /H, /J | |
REM DESTINY_PATH = Path to linked file/folder | |
REM ORIGIN_PATH = Path to original file/folder | |
REM e.g.: mklink /J C:\Vagrant\Project C:\Users\Matheus\Documents\Workspace\Project | |
mklink /PREFIX %DESTINY_PATH% %ORIGIN_PATH% | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment