using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = @"C:\example\demo.txt";
try
{
using (StreamReader reader = new StreamReader(filePath, Encoding.UTF8))
{
string line;
int lineNumber = 1;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine($"Line {lineNumber}: {line}");
lineNumber++;
}
}
}
catch (FileNotFoundException)
{
Console.WriteLine($"错误:文件 {filePath} 不存在");
}
catch (DirectoryNotFoundException)
{
Console.WriteLine($"错误:目录不存在");
}
catch (IOException ex)
{
Console.WriteLine($"IO错误:{ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"未知错误:{ex.Message}");
}
Console.WriteLine("按任意键退出...");
Console.ReadKey();
}
}