How can i get the path of the current user’s “Application Data” folder?
Look at combining Environment.GetFolderPath and Environment.SpecialFolder to do this. Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
Look at combining Environment.GetFolderPath and Environment.SpecialFolder to do this. Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
The Roaming folder is copied between machines when roaming profiles are enabled (in a domain environment). Use it for application data that you want to share between machines. But don’t store large files in there — IT departments don’t like it when you do that, and it increases the time taken for the user to … Read more
To put it straight, ProgramData contains application data that is not user specific.This data will be available to all users on the computer. Any global data should be put in here. AppData folder contains configuration settings, downloaded information/files for a particular user. So, for example any user specific preferences and profile configurations can be stored … Read more
import os print os.getenv(‘APPDATA’)