top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create symbolic link in Windows?

+2 votes
317 views
How to create symbolic link in Windows?
posted Oct 3, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

I have recently done it following is the trick

For files 
$ mklink link target 

For directories 
$ mklink /d link target 

Link specifies the name of the symbolic link 
Target  specifies the path (relative or absolute) that the new link refers to.

For details run the following command on command prompt

$ help mklink
answer Apr 20, 2016 by Salil Agrawal
Similar Questions
0 votes

I need any software which makes my pen drive boot-able for any OS like Win XP/7/Vista...any pointer?

+7 votes

I have search through the android official (http://developer.android.com/sdk/index.html) website but I cloud not find the proper link to install android SDK.

+3 votes

How to delete a symbolic link in Solaris ?

"ln -s" command is working fine to add a symbolic link. But how the symbolic link can be deleted ?
I tried like this, but its not working

ulink abc.xml
ulink: not found

I tried unlink command , but got the following message " command not found"

+2 votes

Any sample example would be helpful, I want to use all files from a directory and want to apply certain operation on it.

...