程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> Asp利用fso顯示文件夾中的內容

Asp利用fso顯示文件夾中的內容

編輯:ASP技巧
利用fso顯示文件夾中的內容,包括子文件夾和文件名
<Html>
<HEAD><TITLE>fso顯示文件夾內容(子目錄和文件)</TITLE></HEAD>
<style>
body {font-size:12px;margin-top:20px;margin-left:20px;}
</style>
<BODY>
<%
'創建一個FileSystemObject對象的事例
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
'創建一個Folder對象
foldername=server.mappath("./")
Set MyFolder=MyFileObject.GetFolder(foldername)
i=0
'循環顯示其中文件夾
response.write "顯示文件夾:"
For Each thing in MyFolder.subfolders
Response.Write("<br>"&#38;thing)
i=i+1
Next
response.write "<br>共有"&#38;i&#38;"個文件夾"

response.write "<p>顯示文件名"
'循環顯示其中文件
i=0
For Each thing in MyFolder.Files
Response.Write("<br>"&#38;thing)
i=i+1
Next
response.write "<br>共有"&#38;i&#38;"個文件"
%>
</Body>
</Html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved