Propiedad de la unidad ASP

La propiedad de la unidad ASP se utiliza para devolver el nombre de la letra de la unidad donde reside el archivo o la carpeta especificados.

Sintaxis:

  • Para objeto de archivo:

    FileObject.Drive
  • Para objeto de carpeta: 

    FolderObject.Drive

Los siguientes ejemplos demuestran la propiedad ASP Drive :

Ejemplo 1: El siguiente código demuestra la propiedad ASP File.Drive.

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the given file
set f=fs.GetFile("d:\GFG.txt")
  
Response.Write("File resides on drive: ")
  
'Getting the drive where the file resides
Response.Write(f.Drive)
  
set f=nothing
set fs=nothing
%>

Producción:

File resides on drive: d:

Ejemplo 2: El siguiente código muestra la propiedad ASP Folder.Drive.

ASP

<%
dim fs,fol
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the required folder
set fol=fs.GetFolder("D:\GFG")
  
'Getting the drive where the folder is stored
Response.Write("This folder is on drive " & fol.Drive)
  
'Getting another folder
set fol=fs.GetFolder("F:\Downloads")
  
'Getting the drive where the folder is stored
Response.Write("<br> This folder is on drive " & fol.Drive)
  
set fol=nothing
set fs=nothing
%>

Producción:

This folder is on drive D:
This folder is on drive F:

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 *