6

I've recently changed from Ubuntu to Windows 7. One feature I'm struggling to develop without, is symbolic links. In linux, I would simply

ln -s /where/to/ /where/from/

I've done some googling for Windows 7, but don't know what the standard accepted method is.

BTW I tried "MLINK" in the command line, and it said MLINK not found... - EDIT: As Hello71 pointed out, it is MKLINK, I misread it. Thanks!

EDIT: I want to be able to include a php framework in this manner, as each of my projects all use the same library.

Dean Rather
  • 2,717

3 Answers3

6

There's a typo in your command; It's mklink, not mlink. I still recommend using Junction, mainly because it also allows for deleting junction points, unlike mklink.

Hello71
  • 8,673
  • 5
  • 42
  • 45
0

In Windows 7 SP1, MKLINK.EXE can create a symbolic link to either a directory or a file. But it can also create a JUNCTION link to a directory.

The ordinary DEL command (or any of the delete options in the Windows Explorer GUI) can remove any of these links, safely (i.e. without deleting the target file or directory - unless it's an empty directory).

The syntax is straightforward. Here is an example batch (.bat) file -

::  ** Location of target Directory **
SET DirPath=C:\TEST

::  ** Create Symbolic Link in Current Directory **
MKLINK /D  SymLinkName  "%DirPath%"

::  ** Create Junction in Current Directory **
MKLINK /J  JunctionName "%DirPath%"
Ed999
  • 262
-1

I've found a very simple method of creating a symbolic link to a directory on Windows 7.

  1. Open a folder containing target folder in explorer.
  2. Copy target folder to clipboard via context menu or Ctrl+C.
  3. Open Start Menu folder in explorer, you may just type shell:Start Menu in address bar.
  4. Click right mouse button on an empty space of the folder to open context menu and choose Paste shortcut.

That's it.