Propiedad de tipo de unidad ASP

La propiedad ASP DriveType se utiliza para obtener el tipo de unidad dada. Devuelve un valor numérico entre 0 y 5 que especifica el tipo de unidad como se indica a continuación:

  • 0: Esto se usa para unidades desconocidas.
  • 1: Esto se usa para unidades extraíbles.
  • 2: Esto se utiliza para unidades fijas.
  • 3: Esto se usa para unidades de red.
  • 4: Esto se utiliza para CD-ROM.
  • 5: Esto se usa para discos RAM.

Sintaxis:

DriveObject.DriveType

 Los siguientes ejemplos ilustran la propiedad ASP Drive.DriveType.

Ejemplo 1: Uso de un disco duro.

ASP

<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the drive
set dr=fs.GetDrive("d:")
  
'Getting the type of the drive
Response.Write("The type of the drive is: " & dr.DriveType)
  
set dr=nothing
set fs=nothing
%>

Producción:

The type of the drive is: 2

Ejemplo 2: Uso de una unidad de disquete.

ASP

<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the drive
set dr=fs.GetDrive("a:")
  
'Getting the type of the drive
Response.Write("The type of the drive is: " & dr.DriveType)
  
set dr=nothing
set fs=nothing
%>

Producción:

The type of the drive is: 1

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *