I'm writing a new document-based cross-platform chemistry application (Win, Mac, Unix), which saves files in its own format (no standard format exists for this field). I'm trying to decide on a file extension for the saved files. My questions are:
- How important is it nowadays to stick to 3 characters?
- Where can you check how much this file extension is already used? (Google helps, of course, but it does not tell me how much a given app is popular)
- Do I really need to use a file-specific extension? My save format is gzip'ed XML, so I could name it
.xml.gz
, but I fear it would confuse beginning users (i.e. when you see it, it does not immediately "ring a bell"). - Finally, do you have other important guidelines when choosing for your own programs?
PS: I tried to keep the right balance between "giving too little information" and "being too specific to be really useful to others". I'll happily provide more information in comments if the need arises.