How can I know where does an app locate its configuration files such as in ~, /Library, ~/Library etc, other than browsing and guessing?
I mean is there some command like findfiles this.app that prints them out or something?
|
|
|||
|
|
|
Applications in Mac have their own application identifier. They use this identifier for naming their preference files and other files such as caches. To find this identifier, view the application's package content (right click and select) and go into the contents folder and open An example of an application identifier is:
or
So the application identifier for Google Chrome, for example is:
To actually find the identifier, open TextEdit, and press Cmd+F to open the Find dialog, and type After finding the application identifier you can find the files easily in the usual folders. However, spotlight does not search such items, and you would have to use a terminal command:
to search the whole hard drive:
For other files, you can use fseventer, as hobs pointed out, to search in real time for what the application accesses, writes and reads on the hard drive. |
|||||
|
|
There are a few programs which can give you insight into file system usage while programs are running. There are a few good terminal ones like All you would do is run your program, run fseventer, and if you make a change to your preferences or configuration and it is stored in a file, it will show you the process touching the file. If it is something like Entourage which stores its rules in files but then keeps them in memory until quit/start, you may want to close other programs and launch your program of choice to see what it loads, then quit it to see the reverse process. |
|||||
|
|
Found a good tutorial which scans for files modified after a defined timestamp. |
|||
|
|
