How can you access files in %appdata% through vb.net? e.g. C:\Users\Kuzon\AppData\Roaming\program. How would i access that file but on another windows 7 machine, also how would you do it on windows xp? I believe it is %Application Data%

link|improve this question

1  
Thanks for trying to query the system for the correct path instead of hard-coding it like a lesser developer would. +1 – Cody Gray Jul 9 '11 at 10:18
@Cody The program I am writing is designed for sharing, that is why it needs to do that, thankyou for your help! I am only 13 so I still have a lot to learn in the world of programming – Kuzon Jul 9 '11 at 10:38
feedback

1 Answer

up vote 3 down vote accepted

When you're writing .NET code, it's recommended that you use the functions explicitly designed for this purpose, rather than relying on environment variables such as %appdata%.

You're looking for the Environment.GetFolderPath method, which returns the path to the special folder that you specify from the Environment.SpecialFolder enumeration.

The Application Data folder is represented by the Environment.SpecialFolder.ApplicationData value. This is, as you requested, the roaming application data folder. If you do not need the data you save to roam across multiple machines and would prefer that it stays local to only one, you should use the Environment.SpecialFolder.LocalApplicationData value.

Full sample code:

Imports System.Environment

Class Sample
    Public Shared Sub Main()
        ' Get the path to the Application Data folder
        Dim appData As String = GetFolderPath(SpecialFolder.ApplicationData)

        ' Display the path
        Console.WriteLine("App Data Folder Path: " & appData)
    End Sub
End Class

And yes, this works in C# the same as VB.NET.

link|improve this answer
Thnankyou so much! – Kuzon Jul 9 '11 at 10:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.