How can you access files in %appdata% through VB.NET?
For example, C:\\Users\\Kuzon\\AppData\\Roaming\\program. How would I access that file, but on another
C:\\Users\\Kuzon\\AppData\\Roaming\\program
Function GetAppDataPath() As String Return Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) End Function