La propiedad ParentFolder de ASP se utiliza para devolver la ruta completa de la carpeta principal de un archivo o una carpeta especificados.
Sintaxis:
-
Para objeto de archivo:
FileObject.ParentFolder
-
Para objeto de carpeta:
FolderObject.ParentFolder
Los siguientes ejemplos ilustran la propiedad ParentFolder de ASP .
Ejemplo 1: El siguiente código demuestra la propiedad File.ParentFolder.
ASP
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the given file set f=fs.GetFile("d:\GFG\sudo\test.asp") Response.Write("The file test.asp is in the folder: ") 'Getting the parent folder of the file Response.Write(f.ParentFolder) set f=nothing set fs=nothing %>
Producción:
The file test.asp is in the folder: d:\GFG\sudo
Ejemplo 2: El siguiente código demuestra la propiedad Folder.ParentFolder.
ASP
<% dim fs,fol set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the given folder set fol=fs.GetFolder("D:\GFG\sudo") Response.Write("The 'sudo' folder is in the folder: ") 'Getting the parent folder of the file Response.Write(fol.ParentFolder) set fol=nothing set fs=nothing %>
Producción:
The 'sudo' folder is in the folder: D:\GFG
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA