How to get path do user's Application Data directory

T

Tim Wilson

You can use the static GetFolderPath of the Environment class passing in the
appropriate Environment.SpecialFolder enum value.
 
H

Herfried K. Wagner [MVP]

Tomas Machala said:
how do I get path to current user's Application Data directory?

\\\
Dim Path As String = _
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top