[RESOLVED] How can I find the Documents folder?
I am needing my program to find the Documents folder, check to see if a couple of sub folders exist, and, if not, create them. The last two parts of that I have seen information on, but I haven't found anything on determining the path for the Documents folder.
Thank you in advance.
Re: How can I find the Documents folder?
My.Computer.FileSystem.SpecialDirectories is VB-specific and Environment.GetFolderPath is available to all .NET languages.
Re: How can I find the Documents folder?
Exactly what I needed! Thank you very much!