windows - create junction with mklink and remove junction with rmdir

rd d:\pic_link

You can create a junction point say d:\pic_link  to real dictory called d:\pic

here is the command to run 

mklink /j d:\pic_link d:\pic

and you can remove the junction point with the following command.

or you can use the full command 

rmdir d:\pic_link



你可能感兴趣的:(tools,windows)