Created
August 5, 2014 02:48
-
-
Save ilovejs/d433fce2746350aae16b to your computer and use it in GitHub Desktop.
CMD_Create_link_for_folder
This file contains 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
mklink /D E:\lp2 %CD%\server | |
// /D is directory | |
%CD% holds current directory | |
It means: | |
Create E:\lp2 as a link map to server folder in current directory. | |
User should browse to a suitable foler forehand, then execute this command. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment