Virtual Drive

Table16

New member
Joined
Feb 14, 2008
Messages
4
Programming Experience
Beginner
Does anyone know if its possible for vb.net to create a virtual disk drive on the computer? Kind of like what DAEMON Tools does? Thanks.
 
You can use the Subst command.
VB.NET:
Process.Start("subst.exe", "x: d:\test") 'add drive
Process.Start("subst.exe", "x: /d") 'remove drive
 
Back
Top