I need to create a read-only lock on a certain file in Windows, in C. The lockf function is completely useless, as it creates an exclusive lock. I need to protect the file from writes, but multiple processes should be able to read it at the same time.

I cannot use CygWin or MINGW libraries, I am limited to the Microsoft APIs, which don't seem to have a decent fcntl. Or am I missing something?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

if you mean for a termporary period, then use CreateFile() with dwShareMode=FILE_SHARE_READ, else use SetFileAttributes()

link|improve this answer
feedback

If you want to lock a portion of the file, use LockFileEx.

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.