Not completely a programming question, but its close enough so here goes:
In Mac OS I'll put user-specific files for my app in ~/Library/Application Data/{MyApp}/
and in *nix I'll put them in ~/.{MyApp}/
- where should I put them for Windows?
I'll be using Ruby's File.expand_path
to get to this directory, so if there's a windows equivalent of ~
then that's fine.
(Answers for Windows XP, Vista and 7 would be appreciated if they're not the same)