Is it possible to check if a file or bundle is opened by any Application? For example, lets say that I know that /Users/Foo/AwesomeDocument.txt exists and its open in TextEdit, can I reliable check from my app that the document is open? I'm okay with solutions that only work with documents opened via NSDocumentController.

link|improve this question

Oh come on, I don't want to start a bounty for every question I create... – JustSid Nov 15 '11 at 12:48
Have you considered that you might have asked a difficult question? – Rob Keniger Nov 21 '11 at 4:04
@RobKeniger Yes, thats why I asked here. – JustSid Nov 21 '11 at 10:39
feedback

3 Answers

You could use an NSTask to run the shell command lsof | grep "Document.txt" and then parse the results, though that method is kind of slow. I don't know of a native Cocoa way to achieve this.

link|improve this answer
Sadly this doesn't work with files that are opened via NSDocumentController since it doesn't have the file handle open the whole time. – JustSid Nov 4 '11 at 15:00
feedback

Do you mean like this?

For example, in Applescript:

tell application "TextEdit"
    set theDocument to document of window 1
    return theDocument
end tell
link|improve this answer
Not exactly, I want to check wether a known file is open, not what is currently open in TextEdit (so the reverse version of this would be awesome). It should also work across spaces =/ – JustSid Nov 19 '11 at 15:57
feedback
tell application "TextEdit"
    set theDocuments to every document
    repeat with aDocument in theDocuments
        if (path of aDocument) as string is equal to "/test.txt" then
            display dialog "found"
        end if
    end repeat
end tell
link|improve this answer
Sorry, but I still need it the other way around. Asking every app if the document is open is a bit of an overhead I don't really want, I would rather just use the path and know if the file is open somewhere. – JustSid Nov 23 '11 at 9:58
feedback

Your Answer

 
or
required, but never shown

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