如何用vb.net实现:判断指定路径下是否存在指定文件

比如我想判断在c盘根目录下是否存在a.txt文件c:尀a.txt麻烦大家了
2024-12-30 04:55:25
推荐回答(4个)
回答1:

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

回答2:

先imports
system.runtime.interopservices
然后class
xxxx
public
shared
function
zlibversion()
as
string
end
function...'在里面调用zlibversion()即可调用zlib1.dll的zlibversion方法,其他dll你根据接口灵活定义好了end
class

回答3:

Dir函数, Dir("C:\a.txt"), 如果存在, 返回"C:\a.txt"
如果不存在, 返回""

回答4:

Dim objFile As System.IO.File
If objFile.Exists("C:\a.txt") Then
MsgBox("存在")
Else
MsgBox("不存在")
End If