编辑代码

  using System;
using System.IO;

class Program
{
    static void Main()
    {
        // 文件路径(可修改为实际路径)
        string filePath = @"C:\example\demo.txt";

        try
        {
            // 使用StreamReader逐行读取
            using (StreamReader reader = new StreamReader(filePath, Encoding.UTF8)) // 根据文件编码调整(如Encoding.Default)
            {
                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();
    }
}