I have been tasked with identifying the file names or file title that are associated with a macOS app that is being used by the user. I have found out that using NSWorkspace.shared.frontmostApplication?.localizedName
works for identifying the active application. I have been unable to find out how to identify the name of the open file names associated with the application. For example, Google Chrome is my currently active application. "How do I identify files being used by active application? Stack Overflow" is the file name. How do I detect that on my macOS app?
Thanks for any help!
This is Unix. Use the tools that Unix gives you.
So in this instance, you might get the pid for this process and use
lsof
. For example:So now we know that TextEdit is 13602. Well then: