Propiedad de tipo ASP

La propiedad de tipo ASP se utiliza para devolver el tipo de un archivo o carpeta en particular. Devuelve el nombre completo del tipo de archivo o carpeta.

Sintaxis:

  • Para objeto de archivo:

    FileObject.Type
  • Para objeto de carpeta:

    FolderObject.Type

Los siguientes ejemplos demuestran la propiedad de tipo ASP.

Ejemplo 1: 

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the file
set f=fs.GetFile("d:\GFG.txt")
Response.Write("The file GFG.txt is of type: ")
  
'Getting the type of the file
Response.Write(f.Type)
  
set f=nothing
set fs=nothing
%>

Producción:

The file GFG.txt is of type: Text Document

Ejemplo 2:

ASP

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
    
'Getting the file
set f=fs.GetFile("d:\GFG.asp")
Response.Write("The file GFG.asp is of type: ")
  
'Getting the type of the file
Response.Write(f.Type)
    
set f=nothing
set fs=nothing
%>

Producción:

The file GFG.asp is of type: Active Server Document

Ejemplo 3: El siguiente código muestra la propiedad ASP Folder.Type.

ASP

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

Producción:

The type of the folder is: File folder

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 *