如何:在 Visual Basic 中确定文件的扩展名
更新:2007 年 11 月
My.Computer.FileSystem.GetFiles 方法将文件名作为字符串的只读集合返回。可以使用 Split 函数 (Visual Basic) 分析该集合。
确定文件的扩展名
通过提供分隔符来检索文件的路径或名称以及 Split 函数,以确定扩展名。此示例使用 GetFiles 方法返回目录 testDirectory 中文件名的集合,并报告每个文件的扩展名。
For Each foundFile As String In _ My.Computer.FileSystem.GetFiles("C:\TestDir") Dim check As String = _ System.IO.Path.GetExtension(foundFile) MsgBox("The file extension is " & check) Next
请参见
任务
如何:在字符串数组中搜索字符串 (Visual Basic)