发布网友 发布时间:2024-03-25 06:29
共5个回答
热心网友 时间:2024-10-26 04:35
1.热心网友 时间:2024-10-26 04:39
try
{ FileStream fs = null; if (!File.Exists(filePath))
{
fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
}
else
{
fs = new FileStream(filePath, FileMode.Open, FileAccess.Write);
} StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(myName);
sw.Close();fs.Close();}
catch (Exception){
//不处理
}
finally
{
Console.WriteLine("Executing finally block");
}
加上文件流看看
热心网友 时间:2024-10-26 04:32
是不是写到NTSF的盘了?热心网友 时间:2024-10-26 04:32
2楼说的很对热心网友 时间:2024-10-26 04:38
同意 messageboxa的观点!你Catch的时候MessageBox.show一下,或者Console.Write(ex.message),看看什么错误就很容易解决了