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)

Leave a Comment