I am wondering if it's possible to get a readonly FileStream to a locked file? I now get an exception when I try to read the locked file.

using (FileStream stream = new FileStream("path", FileMode.Open))

Thanks!

link|improve this question

The line you show isn't attempting to read a locked file, it is where you are attempting to open a file. Are you creating this file somewhere else? If a lock condition exist you are probably doing something to create that condition. Please show more of the code around the single line you listed. – Cos Callis May 17 '11 at 18:36
feedback

2 Answers

up vote 7 down vote accepted

You should try another constructor. They are documented at MSDN.

This one looks like a bet:

FileStream Constructor (String, FileMode, FileAccess, FileShare)

MSDN Link

FileAccess

A constant that determines how the file can be accessed by the FileStream object. This gets the CanRead and CanWrite properties of the FileStream object. CanSeek is true if path specifies a disk file.

FileShare

A constant that determines how the file will be shared by processes.

link|improve this answer
If the line OP shows is resulting in a locked file exception your alternate constructor does not help. Any use of "FileShare" or "FileAccess" will only apply to SUBSEQUENT attempts to access the document. If OP does not go and find where the file was opened (and locked) prior to the current error point and change the Fileshare THERE OP will still get this error. In short this solution will not "unlock" the filestream previously locked. – Cos Callis May 17 '11 at 19:01
2  
The file might have a Write lock. And since FileStream by default tries to open the file for read/write it will fail. Chances are that it will work to open the file as read only. Note My interpretation of the question is that the file was opened by something else and he tries to open it afterwards. – jgauffin May 17 '11 at 19:38
All the more reason why I think your solution may not solve the problem. My interpretation of your solution is that you are suggesting that the OP use an alternate fileshare (the unique value in your suggested c'tor) all of which only allow future attempts to open (subsequent) to share the file. If there is a lock in place when you c'tor is executed it is likely to result in the same outcome. (Unless of course in the undisplayed code is where he is actually attempting the second connection to the file, which would now be permitted, and why I asked for more code from OP...) – Cos Callis May 17 '11 at 19:53
Opening a file with FileMode.Read would work if the file was opened previously with FileShare.Read. Using the OP's constructor would try to get write access (FileMode.ReadWrite) would fail. – jgauffin May 17 '11 at 19:57
@Cos Callis: See? It DID work. – jgauffin May 17 '11 at 20:11
show 4 more comments
feedback
using (FileStream stream = new FileStream("path", FileMode.Open))

That will use the default value for the FileShare argument, FileShare.Read. Which denies any process from writing to the file. That cannot work if another process is writing to the file, you cannot deny a right that was already gained.

You have to specify FileShare.ReadWrite. That might still not work if the other process used FileShare.None, no workaround for that. Beware that getting read access to a file that's being written is troublesome, you don't have a reliable end-of-file indication. The last record or line in the file might have only been partially written.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.