G Guest Jun 8, 2006 #1 Hi, I want to create a file in My Documents folder. How to get the folder path? Thanks in advance
H Herfried K. Wagner [MVP] Jun 8, 2006 #2 Li Pang said: I want to create a file in My Documents folder. How to get the folder path? Click to expand... \\\ Imports System .... Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) ///
Li Pang said: I want to create a file in My Documents folder. How to get the folder path? Click to expand... \\\ Imports System .... Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) ///
G Guest Jun 9, 2006 #3 Hi Herfried K. Wagner, Thanks a lot. Additional question: How to get the local language setting? Thanks in advance
Hi Herfried K. Wagner, Thanks a lot. Additional question: How to get the local language setting? Thanks in advance
Z zacks Jun 9, 2006 #4 Herfried said: \\\ Imports System ... Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) /// Click to expand... Interesting that there would be two special folders that point to the same place, I always use: Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) Is there a situation where the two would point to different locations?
Herfried said: \\\ Imports System ... Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) /// Click to expand... Interesting that there would be two special folders that point to the same place, I always use: Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) Is there a situation where the two would point to different locations?