Propiedad ASP ShortPath

La propiedad ShortPath de ASP se utiliza para devolver la ruta corta del archivo o la carpeta especificados.

Sintaxis:

  • Para objeto de archivo:

    FileObject.ShortPath
  • Para objeto de carpeta:

    FolderObject.ShortPath

Los siguientes ejemplos demuestran la propiedad ShortPath de ASP .

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

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Get the file to be used
set f=fs.GetFile("D:\geeksforgeeksfolder\gfglongfilename.txt")
  
'Get the full path of the file
Response.Write("Full Path: " & f.Path)
  
'Get the short path of the file
Response.Write("<br>Short Path: " & f.ShortPath)
  
set f=nothing
set fs=nothing
%>

Producción:

Full Path: D:\geeksforgeeksfolder\gfglongfilename.txt
Short Path: D:\GEEKSF~1\GFGLON~1.TXT

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

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the folder to be used
set f=fs.GetFolder("D:\geeksforgeeksfolder")
  
'Get the full path of the folder
Response.Write("Full Path: " & f.Path)
  
'Get the short path of the folder
Response.Write("<br>Short Path: " & f.ShortPath)
  
set f=nothing
set fs=nothing
%>

Producción:

Full Path: D:\geeksforgeeksfolder
Short Path: D:\GEEKSF~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 *