Is it possible to test whether a file is alredy used (opened) by some process using GFile?

,

Is there a way to check whether a file is already opened by some process? For example, something like

if (g_file_is_opened(file))
    // Do something.

If not I’ll just do it “raw” C way.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.