[求助]写入文本出错
请教大家个问题,我想将些东西写入文本文件:
string strFilePath = @"f:\food.txt";
string str=desk;
StreamWriter sw;
if (!File.Exists(strFilePath))
{
using (sw = File.CreateText(strFilePath))
{
sw.WriteLine(str);
sw.Close();
}
}
编译通过了,执行的时候给我报错说是
未处理DirectoryNotFoundException
未能找到路径“\f:\food.txt”的一部分
各位大虾帮帮忙,这要怎么改啊? 先谢谢拉!