共用方式為


HOW TO:在 Visual Basic 中尋找具有特定模式的檔案

更新:2007 年 11 月

My.Computer.FileSystem.GetFiles 方法會傳回代表檔案的路徑名稱之字串的唯讀集合。您可以使用 wildCards 參數,指定特定的模式。如果要在搜尋中包含子目錄,請將 searchType 參數設定為 SearchOption.SearchAllSubDirectories。

如果找不到符合指定之模式的檔案,則會傳回空集合。

若要搜尋具有指定模式的檔案

  • 使用 GetFiles 方法,提供要搜尋之目錄的名稱與路徑,並指定模式。下列範例會傳回目錄中副檔名為 .dll 的所有檔案,並將它們加入至 ListBox1。

    For Each foundFile As String In My.Computer.FileSystem.GetFiles( _
        My.Computer.FileSystem.SpecialDirectories.MyDocuments, _
        FileIO.SearchOption.SearchAllSubDirectories, "*.dll")
    
        Listbox1.Items.Add(foundFile)
    Next
    

安全性

下列情形可能會造成例外狀況:

請參閱

工作

HOW TO:在 Visual Basic 中尋找具有特定模式的子目錄

疑難排解:讀取和寫入文字檔

HOW TO:在 Visual Basic 中取得目錄的檔案集合

參考

My.Computer.FileSystem.GetFiles 方法