T Tomas Machala Jul 28, 2005 #1 Hi, how do I get path to current user's Application Data directory? Thanks.
T Tim Wilson Jul 28, 2005 #2 You can use the static GetFolderPath of the Environment class passing in the appropriate Environment.SpecialFolder enum value.
You can use the static GetFolderPath of the Environment class passing in the appropriate Environment.SpecialFolder enum value.
H Herfried K. Wagner [MVP] Jul 28, 2005 #3 Tomas Machala said: how do I get path to current user's Application Data directory? Click to expand... \\\ Dim Path As String = _ Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) ///
Tomas Machala said: how do I get path to current user's Application Data directory? Click to expand... \\\ Dim Path As String = _ Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) ///