Getting the User Data Path

  • Thread starter Thread starter Muscha
  • Start date Start date
M

Muscha

Hello,

How do I get the user data path ie:

C:\Documents and Settings\Username\Application Data\ ?

Because using Application.UserAppDataPath gives added information about the
assembly name and assembly version. Is there a way to get this directory?

thanks,
/m
 
* "Muscha said:
How do I get the user data path ie:

C:\Documents and Settings\Username\Application Data\ ?

Because using Application.UserAppDataPath gives added information about the
assembly name and assembly version. Is there a way to get this directory?

\\\
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
///
 
Back
Top