开发者

How to detect that no one is writing to a file in Linux?

I am wondering开发者_StackOverflow社区, is there a simple way to tell whether another entity has a certain file open for writing? I don't have time to use iNotify continuously to wait for any current writer to finish writing. I need to do an intermittent check. Thanks.


What exactly are you doing where you "don't have time to use iNotify continuously"? First, you should be using the IN_CLOSE_WRITE flag so that iNotify just make one notification when the file gets closed after being written. Using it continuously makes no sense. Second, if your timing is that critical, I'm thinking writing to a file isn't your ideal solution. Do you control the first writer? Do you have to worry about anything else writing to the file after the first writer closes it?


lsof LiSts Open Files. fuser also works similarly (File USER), by telling you which user is using the file.

See: http://www.refining-linux.org/archives/23/16-Introduction-to-lsof-and-fuser/


Since you seem to be wanting to use a library-style interface, and not system, see ofl-lib.c. (It's really just having removed everything but the main function from the ofl program itself.)


You can't do so easily in the general case, and even if you could, you cannot use the information in a non-racy manner (see caf's comment).

So I'd say, redesign your application so you do not need to know.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜