VB.NET应该是这个函数
exists
Dim a As String = "C:\A.txt"
Dim f As New IO.FileInfo(A)
If f.Exists = True Then
MsgBox("存在")
Else
MsgBox("不存在")
End If
先imports
system.runtime.interopservices
然后class
xxxx
public
shared
function
zlibversion()
as
string
end
function...'在里面调用zlibversion()即可调用zlib1.dll的zlibversion方法,其他dll你根据接口灵活定义好了end
class
Dir函数, Dir("C:\a.txt"), 如果存在, 返回"C:\a.txt"
如果不存在, 返回""
Dim objFile As System.IO.File
If objFile.Exists("C:\a.txt") Then
MsgBox("存在")
Else
MsgBox("不存在")
End If