欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

遍歷目錄以及目錄下文件的函數(shù)

 更新時(shí)間:2006年10月28日 00:00:00   作者:  
<%@ Language=VBScript %>
<%
 '遍歷目錄以及目錄下文件的函數(shù),
%>
<%
  function bianli(path)
    set fso=server.CreateObject("scripting.filesystemobject")  

    on error resume next
    set objFolder=fso.GetFolder(path)
    
    set objSubFolders=objFolder.Subfolders
    
    for each objSubFolder in objSubFolders
            
      nowpath=path + "\" + objSubFolder.name
      
      Response.Write nowpath

      set objFiles=objSubFolder.Files

      for each objFile in objFiles
        Response.Write "
---"
        Response.Write objFile.name
      next
      Response.Write "<p>"
      bianli(nowpath)'遞歸
      
    next
    set objFolder=nothing
    set objSubFolders=nothing
    set fso=nothing
  end function
%>
<%
  bianli("d:") '遍歷d:盤(pán)
%>

相關(guān)文章

最新評(píng)論