StreamWriter生成IOException无法找到指定的文件

时间:2018-04-12 19:24:28

标签: c# ioexception

我有以下代码:

using (StreamWriter writer = new StreamWriter(filename, true))
{
   writer.WriteLine(mydata);
}

不时会产生此错误:IOException.Message = "Unable to find the specified file"

文件名字符串由用户指定,可以是网络位置,如:

\\mycorp\Shared\Data.xml

mydata变量也是一个字符串。

此代码是否可能生成FileNotFoundException

1 个答案:

答案 0 :(得分:1)

问题的答案"此代码是否可能生成FileNotFoundException?"是:否。

来源:https://msdn.microsoft.com/en-us/library/36b035cb.aspx

我建议检查异常的来源。它应该在异常堆栈跟踪中给出一个行号。