Quick way to access your files/folders (Windows)

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
I finally got sick of going to Desktop, My Computer, C:\, downloads, game_mods every time I wanted to access that directory. Here's my method of speeding that up:
Right click My Computer, Properties, Advanced, Environment Variables. Take a look at the user variables. Click New. For variable name, type in an easy number like 1, and then for value type your directory, in my case c:\downloads\game_mods. Click OK and exit out of the Properties dialog. You will have to first reboot whatever application you want to use this with (only when you add a variable). Now, you can go in that app's File Open common dialog, and in the file name text box, type the following:

%1%

The percent signs let Windows know its an environment variable. As you will see, auto-complete is also fully functional using this way of shortcut. Instead of a number you can also type %dl% (dl for variable name), short for downloads. You can just type %1% and press enter and it will take you right there also. It also works with the command line. Just do cd /d %1%. You don't need the /d if you are on the drive where that shortcut is located. If you omit the /d and you're not on the same drive, just type C: (or whichever drive) in the command line and it will take you there also, but I think /d is easier. I think you can add as many of these custom user variables as you wish.

If you're in a download (File Save) dialog, in the box add %1%\ to the beginning of the file name box and it will save it in that directory you specified. In addition to all this you can also type it in the address bar of Windows Explorer.

Anyone else have a shorter way?
 

Nohr

Diamond Member
Jan 6, 2001
7,302
32
101
www.flickr.com
It'd probably be quicker to create a shortcut to a program or folder and then create a hotkey in the shortcut properties (CTRL-ALT-* or CTRL-Shift-*).

Also Windows key + E will bring up Windows Explorer.

Regardless that's an interesting tidbit of info.
 

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
The issue with the hotkey is it will open a new explorer window instead of navigate your current dialog. I did try creating a shortcut within the system %PATH% but it simply wouldn't work without specifying the whole path to the shortcut.