为了账号安全,请及时绑定邮箱和手机立即绑定

文件查找代码?

文件查找代码?

慕田峪7331174 2018-11-01 09:06:20
想查找一个路径不知道,但文件名已知的文件,如:"autoCAD2005\acad.exe"。怎样编写代码。请指教。谢谢!
查看完整描述

2 回答

?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

'strDDir  要检索的目录,strSearchChr 要检索的文件名

Private Function SetFileRB(ByVal strDDir As String, ByVal strSearchChr As String) As Integer
        Dim dirInfo As New DirectoryInfo(strDDir)
        Dim intCnt As Integer = 1
        Dim intTemp As Integer = 0
        If dirInfo.Exists Then
            Dim files As FileInfo() = dirInfo.GetFiles(strSearchChr)
            Dim i As Integer
            For i = 0 To files.Length - 1

        '自己的处理
            Next
        End If
        Return intCnt
    End Function


查看完整回答
反对 回复 2018-11-02
?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

String[] files = Directory.GetFiles("BasePath", "*autoCAD2005\acad.exe");//*匹配路径

然后是对BasePath的递归查找,如果是你全匹配的返回路径。


查看完整回答
反对 回复 2018-11-02
  • 2 回答
  • 0 关注
  • 536 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信