摘要:找尋某個目錄下所有檔案,或是某種附檔名的檔案
不囉嗦,很簡單
第一個是取得路徑下所有檔案
Dim strFileDirEnteries() As String = System.IO.Directory.GetFileSystemEntries(strFileDir)
For Each strEntryFileName As String In strFileDirEnteries
next
第二個是取得路徑下所有資料夾
Dim strManyPaths() As String = System.IO.Directory.GetDirectories(strPath, "ABC*")
For Each strSubPath As String In strManyPaths
Next
ps.以上常常搭配
Server.MapPath("~\")
語法,用來取得網站應用程式路徑