搜尋專案中指定資料夾下的檔案(VB)

2021-06-02 20:24:34 字數 531 閱讀 6147

function searchfile() as arraylist

dim doc as string

dim c as integer

dim arr as new arraylist

c = 0

doc = dir(path, vbdirectory) ' 查詢目錄中第乙個資料夾名稱

do while doc <> ""

' 跳過當前的目錄及上層目錄

if doc <> "." and doc <> ".." then

if (getattr(path + doc) and vbdirectory) = vbdirectory then        '如果找到的是目錄/資料夾,繼續查詢子項

arr.add(doc)

c = c + 1

end if

arr.add(doc)

end if

doc = dir() ' 查詢下乙個目錄

loop

return arr

end sub

查詢指定資料夾下的檔案

include include using namespace std finddata t結構體 struct finddata t void main attrib為檔案屬性,由以下字元代表 fa rdonly 唯讀檔案 fa label 卷標號 fa hidden 隱藏檔案 fa direc ...

讀取指定資料夾下的所有檔案

c 怎樣讀取windows資料夾名和該資料夾中的excel表中的資料,並把讀到的資料夾名和excel表中的資料作為資料向插入到sql sever2000的資料表中 private void button1 click 2 object sender,system.eventargs e privat...

python 複製指定資料夾下所有檔案

get all file by type 根據接收到的path 和type,獲得該path下所有以type型別結尾的檔案 get all file by string 根據接收到的path 和 list,獲得該path下所有的,包含list 裡字串的檔案 copy file by type 根據接收...