I need to create a directory in the Windows users home directory ( c:\Documents and Settings\someusername\or c:\users\someusername\). This directory will exist permanently, but will only contain temporary files.
What is the best place for this directory in the user profile if I want to be a good citizen? I should note that my program will be executed (possibly) by non-administrative users and will have access only to their own profile, but they must have permission to create a folder.
Use is My Documents\NameOfMyApp\possible, I think, but it seems intrusive.
Is there a better location for this data type and a specific MFC call to access it?
source
share