One of the nice features of BBEdit is how it tracks files no matter what happens to those files. The application I'm working on should track the location of a number of files owned by the user. The user can move or delete these files, and my application should know where these files are, even if my application did not work during the change of location.
What is the recommended strategy for this problem or what could it be?
Tracking files while the application is running is not a problem. I want to indicate the correct file path when my application is running, regardless of what happened to these files when my application was not running.
Manual file search is the best approach, or am I missing an API that makes this task easier?
Bart jacobs
source share