Por ejemplo si con esto:
<%
set objFSO = Server.CreateObject("Scripting.FileSystemObject")
set colDrives = objFSO.Drives %>
<form name="formulario" action="ficheros.asp" method=post>
<font color=black face=Arial,Verdana size=1>Unidades disponibles: </font><select name="unidad" size=1>
<option value="">
<%for each objDrive in colDrives
if objDrive.IsReady then %>
<option value="<%=objDrive.DriveLetter %>:"><%=objDrive.DriveLetter%>:\
<% end if
next %>
</select>
<input type=submit name=sub value="Mostrar"><br>
</form>
muestro las unidades del servidor, que deberia cambiar para mostrar las locales.
Saludos.
