Where to store DB for command line tool

I have a simple command line tool that requires a DB to function. Where do I put the database file?

Application Support or some posix directory?

TIA

Mark

Replies

It really up to you. Application Support makes sense if your primary focus is Mac users and you want the database to be easily access to them in the Finder. A more Unix-y location, like ~/.your-product-name, makes senes if your primary focus is Unix-y users.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Ok. Thanks for help.