Reputation: 1
Need to obtain following path from the registry:
%userprofile%
Upvotes: 0
Views: 279
Reputation: 30636
In C#, you can use this:
Environment.GetFolderPath (Environment.SpecialFolder.UserProfile)
to load up the path to the current user's profile.
Upvotes: 5