【CSharp】解决读写文件时文件正由另一进程使用,因此该进程无法访问该文件
错误提示:文件“D:\Log\log20170317.txt”正由另一进程使用,因此该进程无法访问该文件。
FileStream fs = File.OpenRead(url); StreamReader sr = new StreamReader((Sys tem.IO.Stream)fs, System.Text.Encoding.Default);
错误提示:文件“D:\Log\log20170317.txt”正由另一进程使用,因此该进程无法访问该文件。
StreamReader sr = File.OpenText(url);
错误提示:文件“D:\Log\log20170317.txt”正由另一进程使用,因此该进程无法访问该文件。
string textInfo = File.ReadAllText(filePath,Encoding.Default);
正确读取方式
using (var fileStream = new FileStream(logFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) using (var reader = new StreamReader(fileStream)) { string content = reader.ReadToEnd(); }
总结:这样的情况,不单要与只读方式打开txt文件,而且,需要共享锁。还必须要选择flieShare方式为ReadWrite。因为随时有其他程序对其进行写操作。
- 感谢你赐予我前进的力量
赞赏者名单
因为你们的支持让我意识到写文章的价值🙏
评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果