该进程无法访问该文件,因为该文件正在被另一个进程使用
可能的重复:
无法访问文件,因为该文件正在被另一个进程使用流程
using (StreamWriter _SelectedFile = File.CreateText(CConstant.m_TEMPFILEPATH))
{
_SelectedFile.WriteLine(CConstant.m_SaveFileDefaultDirectory);
_SelectedFile.WriteLine(CConstant.Tempfile_ECUSelected);
_SelectedFile.WriteLine(CConstant.Tempfile_inifile);
_SelectedFile.WriteLine(CConstant.Tempfile_mapfile);
_SelectedFile.Flush();
_SelectedFile.Close();
_SelectedFile.Dispose();
}
运行代码时,第一次运行代码时(没有 temp.txt 文件),它会抛出异常“该进程无法访问该文件,因为它正在被另一个进程使用”过程。”请提出一个解决方案并还有这样写代码有什么问题吗?
Possible Duplicate:
Cant Access File because it is being used by another process
using (StreamWriter _SelectedFile = File.CreateText(CConstant.m_TEMPFILEPATH))
{
_SelectedFile.WriteLine(CConstant.m_SaveFileDefaultDirectory);
_SelectedFile.WriteLine(CConstant.Tempfile_ECUSelected);
_SelectedFile.WriteLine(CConstant.Tempfile_inifile);
_SelectedFile.WriteLine(CConstant.Tempfile_mapfile);
_SelectedFile.Flush();
_SelectedFile.Close();
_SelectedFile.Dispose();
}
When running the code, the very first time when i run the code(There is no temp.txt file ) , it throws an exception "The process can't access the file, because it is being used by another process."Please suggest a solution and also what's wrong in writing the code this way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不能使用 FileMode.OpenOrCreate 选项创建 FileStream 吗?而不是文件?
Cant you create FileStream with FileMode.OpenOrCreate option? rather than File?
使用 (StreamWriter sw = new StreamWriter(CConstant.m_TEMPFILEPATH, true))
将您的代码替换为上层代码,并测试它,是否也是相同的结果?
using (StreamWriter sw = new StreamWriter(CConstant.m_TEMPFILEPATH, true))
replace your code with the code of upper ,and test it, is also same result?