the 2 "Application Data" areas![]() Could someone explain to me the differences between: C:\Documents and Settings\Tim\Application Data In my testing of portable applications I have found that many leave files/folders behind in: Some however leave files/folders behind in: The implication is that Windows considers the files in: so I'm wondering if anyone could explain to me the difference between the 2 "Application Data" areas. Thanks, [edit: fixed dupped use of the same path, "\Local Settings\, in last example above] ( categories: )
|



Roaming vs Local
It's basically Roaming vs Local, as it is referred to in modern Windows. AppData is Roaming (your C:\Documents and Settings\Tim\Application Data) and is where standard application data is kept. Settings and things of that nature. When using a roaming profile in Windows (central login server), the things in AppData\Roaming come with you. Local Settings is Local in modern Windows (C:\Documents and Settings\Tim\Local Settings\Application Data for you) and is usually things like cache and machine-specific stuff.
For portable apps, you will need to handle both pieces. Most apps will only use AppData.
Sometimes, the impossible can become possible, if you're awesome!