Propiedad de nombre corto de ASP

La propiedad ASP ShortName se utiliza para obtener el nombre corto del archivo o carpeta especificados en el sistema.

Sintaxis:

  • Para objeto de archivo:

    FileObject.ShortName
  • Para objeto de carpeta:

    FolderObject.ShortName
  • Los siguientes ejemplos ilustran la propiedad ASP ShortName .

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

    ÁSPID

    <%
    dim fs,f
    set fs=Server.CreateObject("Scripting.FileSystemObject")
        
    'Getting the file
    set f=fs.GetFile("d:\alargefilename.txt")
      
    'Getting the full name of the file
    Response.Write("Full Name: " & f.Name)
      
    'Getting the short name of the file
    Response.Write("<br>Short Name: " & f.ShortName)
      
    set f=nothing
    set fs=nothing
    %>

    Producción:

Full Name: alargefilename.txt
Short Name: ALARGE~1.TXT

Ejemplo 2: El siguiente código ilustra la propiedad ASP File.ShortName.

ASP

<%
dim fs,fol
set fs=Server.CreateObject("Scripting.FileSystemObject")
    
'Getting the folder
set fol=fs.GetFolder("d:\geeksforgeeksfolder")
  
'Getting the full name of the folder
Response.Write("Full Name: " & fol.Name)
  
'Getting the short name of the folder
Response.Write("<br>Short Name: " & fol.ShortName)
  
set fol=nothing
set fs=nothing
%>

Producción:

Full Name: geeksforgeeksfolder
Short Name: 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 *