Shortcut for creating a new folder
A common question!
There are a few shortcuts to create a new folder in different operating systems:
Windows:
- Press
Win + E
to open File Explorer, then:- Press
Ctrl + Shift + E
to create a new folder. - Alternatively, right-click in the folder you want to create a new folder in, and select "New" > "Folder".
- Press
- In the Run dialog box (Windows key + R), type
explorer /n,
and press Enter. This will open a new Explorer window with a new folder created.
Mac (OS X):
- Press
Cmd + Shift + N
to create a new folder in the current directory. - Alternatively, right-click (or control-click) in the Finder window, and select "New Folder".
Linux:
- Press
Ctrl + Shift + N
to create a new folder in the current directory. - Alternatively, use the
mkdir
command in the terminal:mkdir newfolder
(replace "newfolder" with the name you want to give your new folder).
These shortcuts should help you create a new folder quickly and efficiently!