当您尝试查找不存在的文件时,会引发找不到文件异常。
假设我在 StreamReader 中设置了一个不存在的文件“new.txt”。如果您尝试使用 StreamReader 访问它(读取它),它将抛出 FileNotFoundException -
using (StreamReader sReader = new StreamReader("new.txt")) { sReader.ReadToEnd(); }
要处理它,您需要使用 try 和 catch -
Try { using (StreamReader sReader = new StreamReader("new.txt")) { sReader.ReadToEnd(); } }catch (FileNotFoundException e) { Console.WriteLine("File Not Found!"); Console.WriteLine(e); }
以上是如何捕获C#中的文件未找到异常?的详细内容。更多信息请关注PHP中文网其他相关文章!