How to create a new folder shortcut
Creating a new folder shortcut is a simple process that can be done in a few steps. Here's how:
Method 1: Using the File Explorer
- Open File Explorer (Windows Key + E) or Finder (Mac).
- Navigate to the folder you want to create a shortcut for.
- Right-click on the folder and select "Create shortcut" (Windows) or "Make Alias" (Mac).
- A new shortcut will be created and placed next to the original folder.
- You can rename the shortcut by right-clicking on it and selecting "Rename" (Windows) or "Get Info" (Mac).
Method 2: Using the Command Line (Windows)
- Open the Command Prompt (Windows Key + R, type
cmd
, and press Enter). - Navigate to the folder you want to create a shortcut for using the
cd
command (e.g.,cd Documents
). - Type the following command and press Enter:
mklink shortcut <folder name>
. - Replace
<folder name>
with the name you want to give your shortcut. - The shortcut will be created in the current directory.
Method 3: Using the Terminal (Mac)
- Open the Terminal app (Finder > Applications > Utilities > Terminal).
- Navigate to the folder you want to create a shortcut for using the
cd
command (e.g.,cd Documents
). - Type the following command and press Enter:
ln -s <folder name> <shortcut name>
. - Replace
<folder name>
with the path to the folder you want to create a shortcut for, and<shortcut name>
with the name you want to give your shortcut. - The shortcut will be created in the current directory.
That's it! You now have a new folder shortcut. You can place it anywhere on your computer or network, and it will always point to the original folder.