There is a service which constantly writes new content to a file:
using (var stream = File.Create(FileName)) // overwrites the file
{
stream.Write(data, 0, data.Length);
}
The file is constantly accessed by multiple readers (including a web app which renders its content from this file). I have no control over readers clients code. The file should always be accessible to the readers. What is more, they should see the whole content and not the content in the middle of writing to the file.
Any techniques like this:
using (var stream = File.Create(FileName + ".tmp"))
{
stream.Write(data, 0, data.Length);
}
File.Delete(FileName);
File.Move(FileName + ".tmp", FileName);
can lead to lack of content on a Web page (with some probability). And the service sometimes throws IOException exception with the message "The process cannot access the file because it is being used by another process".
The question is: How can file content be constantly replaced without readers clients access interruption?