From: Clifford Heath Date: 2007-09-15T13:25:11+09:00 Subject: Re: Cross-platform Home Directory? Trans wrote: > I have a little app that needs to store session data. I assume the > best place to store it is in one's home directory Everyone's helped you with ways to find the home directory, but on Windows this is not normally the right place to store session data. That's what Application Data is for. Make a directory under there for your application. Configuration data (user-modifiable but less frequently-changing) may be stored in the registry. The Windows certification documents describe where you should put stuff. Clifford Heath.