VB.NET 判断文件夹目录与文件是否存在检查

VB.NET 判断文件夹目录与文件是否存在检查,第1张

概述Private Sub BTN_LOAD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesBTN_LOAD.Click     '文件夹 CHECK     If Not blnDirExist(TXT_PATH.Text.Trim) Then         MsgBox("文件夹路径不存在")  

PrivateSubBTN_LOAD_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesBTN_LOAD.Click
'文件夹 CHECK
IfNotblnDirExist(TXT_PATH.Text.Trim)Then
MsgBox("文件路径不存在")
BTN_LOAD.Focus()
ExitSub
EndIf
'文件 CHECK
IfNotblnfileExist(TXT_PATH.Text.Trim)Then
MsgBox("文件不存在")
BTN_LOAD.Focus()
ExitSub
EndIf
EndSub

#Region"文件夹存在CHECK"
PrivateFunctionblnDirExist (ByValstrPathAsString)AsBoolean
DimstrDirTempAsString()
strDirTemp = strPath.Split("\")
strPath =String.Empty
ForiAsInteger= 0TostrDirTemp.Length – 2
strPath += strDirTemp(i) &"\"
Next

blnDirExist = System.IO.Directory.Exists(strPath)
EndFunction
#End Region

#Region"文件存在CHECK"
PrivateFunctionblnfileExist (ByValstrfileAsString)AsBoolean
blnfileExist = System.IO.file.Exists(strfile)
EndFunction #End Region

总结

以上是内存溢出为你收集整理的VB.NET 判断文件夹目录与文件是否存在检查全部内容,希望文章能够帮你解决VB.NET 判断文件夹目录与文件是否存在检查所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1285754.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存