File Exists Method tests whether the specified file exists
Imports System Imports System.IO Public Class Test Public Shared Sub Main() Dim curFile As String = "c:\temp\test.txt" Console.WriteLine(If(File.Exists(curFile), "File exists.", "File does not exist.")) End Sub End Class