Forrest logo
back to context overview

mklink

List of commands for mklink:

  • mklink:tldr:27972 mklink: Create a symbolic link to a directory.
    $ mklink /d ${path\to\link_file} ${path\to\source_directory}
    try on your machine
    explain this command
  • mklink:tldr:68443 mklink: Create a directory junction.
    $ mklink /j ${path\to\link_file} ${path\to\source_file}
    try on your machine
    explain this command
  • mklink:tldr:ac1e6 mklink: Create a symbolic link to a file.
    $ mklink ${path\to\link_file} ${path\to\source_file}
    try on your machine
    explain this command
  • mklink:tldr:d7eac mklink: Create a hard link to a file.
    $ mklink /h ${path\to\link_file} ${path\to\source_file}
    try on your machine
    explain this command
back to context overview