有人请帮我“使用 VB 6.0 代码在目录中搜索文件(带有任何扩展名),如果在指定目录中找到所需文件,则代码将返回 TRUE,否则返回 FALSE”
谢谢
Private Function CheckPath (strPath As String) As Boolean
If Dir$(strPath) <> "" Then
CheckPath = True
Else
CheckPath = False
End If
End Function