如何用vb.net实现:判断指定路径下是否存在指定文件
4个回答
展开全部
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
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
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
If objFile.Exists("C:\a.txt") Then
MsgBox("存在")
Else
MsgBox("不存在")
End If
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询