If (FileDB.ShowDialog() = DialogResult.OK) Then Dim SourceFile As StreamReader Try
SourceFile = New StreamReader(FileDB.FileName)
Console.WriteLine(SourceFile.ReadToEnd())
SourceFile.Close() Catch Except As DirectoryNotFoundException
Console.WriteLine("Error: " & Except.Message) Catch Except As FileNotFoundException
Console.WriteLine("Error: " & Except.Message) Catch Except As Exception
Console.WriteLine("Error: " & Except.Message) End Try
Else
Console.WriteLine("User selected Cancel") End If End Sub End class
13.10.File Exception
13.10.1.
Catch file related exceptions: DirectoryNotFoundException, FileNotFoundException