使用文件流时,将FileShare
设置为None
,并说同时访问同一功能的两个用户想要读/写该文件。 FileShare.None
会让第二个用户请求等待还是第二个用户的请求会抛出异常?
//two users get to this this code at the same time
using (FileStream filestream = new FileStream(chosenFile, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
using (StreamReader sr = new StreamReader(filestream))
using (StreamWriter sw = new StreamWriter(filestream))
{
//reading and writing to file
}
Msdn说:无拒绝分享当前文件。在文件关闭之前,任何打开文件的请求(通过此过程或其他过程)都将失败。
但请求会继续尝试,直到文件流关闭?
答案 0 :(得分:3)
不,IOException
会被HResult = -2147024864
和Message = The process cannot access the file 'path' because it is being used by another process.
如果要同步对文件的访问权限,可以使用命名等待句柄。
public class FileAcessSynchronizer
{
private readonly string _path;
private readonly EventWaitHandle _waitHandle;
public FileAcessSynch(string path)
{
_path = path;
_waitHandle = new EventWaitHandle(true, EventResetMode.AutoReset, "NameOfTheWaitHandle");
}
public void DoSomething()
{
try
{
_waitHandle.WaitOne();
using (FileStream filestream = new FileStream(chosenFile, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
using (StreamReader sr = new StreamReader(filestream))
using (StreamWriter sw = new StreamWriter(filestream))
{
//reading and writing to file
}
}
finally
{
_waitHandle.Set();
}
}
}
因为命名等待句柄创建critical section没有两个线程或应用程序进程(使用与等待句柄名称相同的名称)可以同时执行其中的代码。因此,一个线程或进程进入该部分,以没有人可以访问它的方式打开文件(其他应用程序),执行命令,最后离开临界区以允许应用程序的其他线程或进程进入关键部分。
答案 1 :(得分:2)
当进程以FileShare.None
进行读/写操作时,任何进程对此同一文件的任何后续访问都将导致Acess Denied Exception
。要回答您的问题,第二位用户将获得例外。
MSDN:FileShare.None - 拒绝分享当前文件。任何要求打开的 文件(通过此进程或其他进程)将失败,直到文件为止 闭合。
您可以通过多种方式处理这类并发文件访问问题,以下代码演示了解决此问题的简单方法。
//Retry 5 times when file access fails
int retryCounter = 5;
while (!isFileAccessSuccess && retryCounter > 0)
{
try
{
//Put file access logic here
//If the file has been accessed successfully set the flag to true
isFileAccessSuccess = true;
}
catch (Exception exception)
{
//Log exception
}
finally
{
//Decrease the retry count
--retryCounter;
}
if (!isFileAccessSuccess)
{
//Wait sometime until initiating next try
Thread.Sleep(10000);
}
}