--- syntax: markdown tags: [tldr, windows] source: https://github.com/tldr-pages/tldr.git --- # mklink > Create symbolic links. > More information: . - Create a symbolic link to a file: `mklink {{path o\link_file}} {{path o\source_file}}` - Create a symbolic link to a directory: `mklink /d {{path o\link_file}} {{path o\source_directory}}` - Create a hard link to a file: `mklink /h {{path o\link_file}} {{path o\source_file}}` - Create a directory junction: `mklink /j {{path o\link_file}} {{path o\source_file}}`