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

StreamWriter generate IOException Unable to find the specified file

我有以下代码:

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

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

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

\mycorp\Shared\Data.xml

并且mydata变量也是一个字符串。

此代码是否可能生成 FileNotFoundException

问题"Is it possible that this code will generate a FileNotFoundException?"的答案是:否

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

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