What is the difference between ProgramData and AppData?
问题 I need to store some user-specific configuration data for my program. Both Application Data/AppData (in the user's directory) and ProgramData (in the root of the system drive) seem like reasonable places to put it. What is the difference between Program Data and Application Data and which should I use? 回答1: To put it straight, ProgramData contains application data that is not user specific .This data which will be available to all users on the computer. Any global data should be put in here.