Propiedad ASP DriveLetter

La propiedad ASP DriveLetter se utiliza para devolver la letra mayúscula que define el disco local o un recurso compartido de red.

Sintaxis:

DriveObject.DriveLetter

Ejemplo: El siguiente código ilustra la propiedad de letra de unidad ASP. 

ASP

<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
    
'Getting the drive to be used
set drive=fs.GetDrive("d:")
  
'Getting the drive letter of the drive
Response.Write("Letter of the drive is: " & dr.DriveLetter)
    
set dr=nothing
set fs=nothing
%>

Producción:

Letter of the drive is: D

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 *