La colección de subcarpetas ASP se utiliza para devolver la colección de todas las subcarpetas en una carpeta específica.
Sintaxis:
FolderObject.SubFolders
Ejemplo: El siguiente código muestra la colección ASP Folder.SubFolders.
ASP
<% dim fs,fo,x set fs=Server.CreateObject("Scripting.FileSystemObject") 'Get the folder to be read set fo=fs.GetFolder("d:\GFG\") 'Loop through the subfolders in the folder for each x in fo.SubFolders 'Print the name of all subfolders in the GFG folder Response.write("Subfolder Name: " & x.Name & "<br>") next set fo=nothing set fs=nothing %>
Producción:
Subfolder Name: html Subfolder Name: css Subfolder Name: asp Subfolder Name: vbscript
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA