1. c# 读写文件时文件正由另一进程使用,因此该进程无法访问该文件
问题描述:
c# 读写文件时文件正由另一进程使用,因此该进程无法访问该文件,在IO处理上遇到了无法操作的问题
使用IO流如下
(1)
FileStream fs = File.OpenRead(url); StreamReader sr = new StreamReader((System.IO.Stream)fs, System.Text.Encoding.Default);
错误提示:文件“D:\xxx\xxx\xxx.txt”正由另一进程使用,因此该进程无法访问该文件
(2)
StreamReader sr = File.OpenText(url);
错误提示:错误提示:文件“D:\xxx\xxx\xxx.txt”正由另一进程使用,因此该进程无法访问该文件
(3)
FileStream fs = new FileStream(url, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); StreamReader sr = new StreamReader(fs, System.Text.Encoding.Default);
正确读取
这样的情况,不单要与只读方式打开txt文件,而且,需要共享锁。还必须要选择flieShare方式为ReadWrite。因为随时有其他程序对其进行写操作
2. 获取磁盘列表
String[] drives = Environment.GetLogicalDrives();
using System.IO; DriveInfo[] allDirves = DriveInfo.GetDrives();
--
标签:文件,c#,无法访问,xxx,System,File,进程,相关,StreamReader From: https://www.cnblogs.com/kezhang/p/17786293.html