How to Check whether given file exists or not
Posted on April 22, 2009
Here is the code to Check whether the given file exists or not in VB.Net:
1 2 3 | Public Function IsFileExists(ByVal strFileName As String) As Boolean IsFileExists = System.IO.File.Exists(strFileName) End Function |








