Home General VB.NET Check if File Exists
20 | 05 | 2012
This site has been updated and renewed. You have followed an old link.

Click here to go to the new site

http://www.visiblevisual.com/jupgrade

Check if File Exists PDF Print E-mail
User Rating: / 0
PoorBest 
Tutorials

 

 [code]

Public Function Fileexists(ByVal FName) As Boolean

If Left(FName, 4) = " " Then

Fileexists = False

Else

If Dir(FName) <> "" Then

Fileexists = True

Else

Fileexists = False

End If

End If

End Function

[/code]

 

Add comment


Security code
Refresh

This site has been updated and renewed. You have followed an old link.

Click here to go to the new site

http://www.visiblevisual.com/jupgrade