我正在尝试读取包含一些丹麦字符的文本文件。我找到了几种使用不同类型编码的方法,但我看到的示例只读取一个文件。这就是我到目前为止所拥有的。
//search directory for all .txt files
foreach (string files in Directory.GetFiles(@"C:\ftp\inbox", "*.txt"))
{
//The 'using' command close connection when it is done
using (var reader = new StreamReader(File.OpenRead(files)))
{
// Handle contents
}
}
我的问题是所有字符都被读取为�。我需要按原样阅读它们。