VB过程:在已知磁盘中查找扩展名是jpg的文件,找到第一个符合条件文件后返回文件所在的完整路径?

我用的VB6中文企业版,请给出完整的代码,谢谢!谢谢zorrowh的回答,也许我的问题未说清。事先不知道文件的路径,只知道文件扩展名jpg和所在磁盘,写个函数通过扩展名返... 我用的VB6中文企业版,请给出完整的代码,谢谢!
谢谢zorrowh的回答,也许我的问题未说清。事先不知道文件的路径,只知道文件扩展名jpg和所在磁盘,写个函数通过扩展名返回*.jpg所在的完整路径。
展开
 我来答
zorrowh
2008-04-18 · TA获得超过488个赞
知道小有建树答主
回答量:622
采纳率:0%
帮助的人:224万
展开全部
窗体上有一个LABEL 一个TEXT text的MultiLine 设为TRUE 一个COMMAND

Public Sub SeachFile(ByVal strPath As String)
On Error Resume Next
Dim Fso As Object
Dim Fol As Object
Dim Fil As Object
Dim MyName As String

Set Fso = CreateObject("Scripting.FileSystemObject")
Set Fol = Fso.GetFolder(strPath)
If strPath <> "" Then
If Right(strPath, 1) = "\" Then
strPath = Left(strPath, Len(strPath) - 1)
End If
Label1.Caption = strPath
DoEvents
MyName = Dir(strPath & "\ldifde.exe")'这里改你想查找的文件名
Do While MyName <> "" ' 开始循环。

If Len(MyName) > 0 Then
Text1.Text = Text1.Text & vbCrLf & strPath & "\" & MyName
Exit Do
End If
MyName = Dir()
Loop

End If

'扫描子目录
For Each Fol In Fol.SubFolders
SeachFile Fol
Next
End Sub

Private Sub Command1_Click()
Text1.Text = ""
Call SeachFile("c:\")
End Sub
我试过了,可以搜
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式