Propiedad de ruta ASP

La propiedad de ruta ASP se utiliza para obtener la ruta completa de un archivo, carpeta o unidad específica en el sistema.

Sintaxis:

  • Para objeto de archivo

    FileObject.Path
  • Para objeto de carpeta:

    FolderObject.Path

Para objeto de accionamiento:

DriveObject.Path

Los siguientes ejemplos demuestran la propiedad Path de ASP .

Ejemplo 1: El siguiente código ilustra la propiedad ASP File.Path.

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the given file
set f=fs.GetFile("d:\GFG\sudo\geeks.asp")
  
'Getting the path of the file
Response.Write("Complete path for the specified file: " & f.Path)
  
set f=nothing
set fs=nothing
%>

Producción:

Complete path for the specified file: d:\GFG\sudo\geeks.asp

Ejemplo 2: El siguiente código ilustra la propiedad ASP Folder.Path.

ASP

<%
dim fs,fol
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the required folder
set fol=fs.GetFolder("d:\GFG\geeks")
  
'Getting the complete path of the folder
Response.Write("The path of the folder is " & fol.Path)
  
set fol=nothing
set fs=nothing
%>

Producción:

The path of the folder is D:\GFG\geeks

Ejemplo 3: El siguiente código ilustra la propiedad ASP Drive.Path.

ASP

<%
dim fs,drive
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Get the required drive
set drive=fs.GetDrive("d:")
  
'Finding the path of the drive
Response.Write("The path of the drive is: " & drive.Path)
  
set drive=nothing
set fs=nothing
%>

Producción:

The path 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 *