<Complete Unità Object Reference
La proprietà DriveType restituisce un valore che indica il tipo di un'unità specificata.
Questa proprietà può restituire uno dei seguenti valori:
- 0 = sconosciuto
- 1 = amovibile
- 2 = fissa
- 3 = rete
- 4 = CD-ROM
- 5 = disco RAM
Sintassi
DriveObject.DriveType
Esempio
<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("a:")
Response.Write("The drive type is: " & d.DriveType)
set d=nothing
set fs=nothing
%>
Output:
The drive type is: 1
<Complete Unità Object Reference