How to convert a Folder into a Drive

Here's a trick which allows you to use any folder as a drive in Windows. This trick comes very handy when you use a particular folder often, and want to quickly access it like in Command Prompt. It actually adds a new drive in My Computer with your specified drive letter(whatever you specify) and that drive actuall ...

Customization Tweaking 1790 This topic was started by ,



data/avatar/default/avatar02.webp

2 Posts
Location -
Joined 2009-07-14
Here's a trick which allows you to use any folder as a drive in Windows. This trick comes very handy when you use a particular folder often, and want to quickly access it like in Command Prompt. It actually adds a new drive in My Computer with your specified drive letter(whatever you specify) and that drive actually points to your designated folder. Once you open the drive, you can access the folder.
 
The DOS command SUBST is used to create a virtual drive allowing you to add any file path and used as a drive.
 
SUBST [drive1: [drive2:]path]
 
drive1: Specifies a virtual drive to which you want to assign a path.
drive2: Specifies a physical drive and path you want to assign to a virtual drive.
 
For example, to create a virtual drive with a specified path:
 
* Find a folder you want to use as a drive and remember its path. For demonstration i will be using ‘H:\sid’ as the path.
* Open Command Prompt and type “subst drive-letter path”
* For example, type “subst z: H:\sid” and press Enter.
 
*
 
 
 
Now you can easily access that folder by just typing z:
 
 
Removing the Virtual Drive:
 
To remove the virtual drive, go to Command Prompt, and type subst z: /D.
 
/D Deletes a substituted virtual drive.
 
source: techsense http://itstechsense.blogspot.com/2009/07/how-to-convert-folder-into-drive.html

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic



data/avatar/default/avatar11.webp

11 Posts
Location -
Joined 2011-07-26
Here's a trick which allows you to use any folder as a drive in Windows. This trick comes very handy when you use a particular folder often, and want to quickly access it like in Command Prompt. It actually adds a new drive in My Computer with your specified drive letter(whatever you specify) and that drive actually points to your designated folder. Once you open the drive, you can access the folder.
The DOS command SUBST is used to create a virtual drive allowing you to add any file path and used as a drive.
SUBST [drive1: [drive2:]path]
drive1: Specifies a virtual drive to which you want to assign a path.
drive2: Specifies a physical drive and path you want to assign to a virtual drive.
For example, to create a virtual drive with a specified path:
* Find a folder you want to use as a drive and remember its path. For demonstration i will be using �H:sid� as the path.
* Open Command Prompt and type �subst drive-letter path�
* For example, type �subst z: H:sid� and press Enter.
*Now you can easily access that folder by just typing z:
 
Removing the Virtual Drive:
To remove the virtual drive, go to Command Prompt, and type subst z: /D.
/D Deletes a substituted virtual drive.
source: <a href="https://www.ntcompatible.com/http://itstechsense.blogspot.com/2009/07/how-to-convert-folder-into-drive.html"'>http://itstechsense.blogspot.com/2009/07/how-to-convert-folder-into-drive.html" >techsense</a> <a href="http://itstechsense.blogspot.com/2009/07/how-to-convert-folder-into-drive.html" > http://itstechsense.blogspot.com/2009/07/how-to-convert-folder-into-drive.html</a>

 
Couldn't you just simply Map folder as a drive?
 
Select the folder and then click Map Network Drive in the tools menu.