I'm trying to figure out a way to navigate to a sub folder in Roaming using C#. I know to access the folder I can use:
string folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
What I'm trying to do is navigate to a folder inside of Roaming, but do not know how. I basically need to do something like this:
string insideroaming = string folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData\FolderName);
Any way to do this? Thanks.