Gli ultimi tutorial di sviluppo web
 

ASP SubFolders Collection


<Complete Folder Object Reference

La collezione SubFolders restituisce un insieme di tutte le sottocartelle in una cartella specifica.

Sintassi

FolderObject.SubFolders

Esempio

<%
dim fs,fo,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test\")

for each x in fo.SubFolders
  'Print the name of all subfolders in the test folder
  Response.write(x.Name & "<br>")
next

set fo=nothing
set fs=nothing
%>

Output:

html
css
asp
vbscript

<Complete Folder Object Reference