I'm working on a project in Visual Basic and it's going to store all the data in a folder in %appdata%. I'm using Visual Studio 2010 I already tried this:

My.Computer.FileSystem.CreateDirectory(Environment.ExpandEnvironmentVariables(%AppData%\test"))

but it didn't work.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
Dim filePath As String

filePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\test"
link|improve this answer
Thanks I thought I could do it like that but I didn't think it would work ,so I didn't give it the time of day – Matthewj Aug 24 '11 at 2:31
Please, if the answer helped you, please accept it as the correct answer. – Allen Gammel Aug 24 '11 at 2:50
feedback

Using VB.NET, you can find them conveniently located in the My namespace at:

My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData
My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData

Check out the MSDN documentation for more paths.

link|improve this answer
Thanks for the help! – Matthewj Aug 24 '11 at 2:29
feedback

Your Answer

 
or
required, but never shown

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