>
Main
>
Archive
>
2006
>
July
>
.Net - Storing Application Data
.Net - Storing Application Data
Something I learned about storing application data in .Net. You may have tried using
Application.UserAppDataPath
which
returns a string representing the user's application data plus the
application's company name, name and version number. If you weren't
looking for all that additional stuff, you should try using the
Environment.GetFolderPath(Environment.SpecialFolder)
method. In this case passing the
Environment.SpecialFolder.ApplicationData
parameter is sufficient.
7/23/2006 7:22:08 PM
Comments