angula Posted December 17, 2003 Posted December 17, 2003 Can someone point me to the function that returns the current user's My Documents folder path? Quote
*Experts* mutant Posted December 17, 2003 *Experts* Posted December 17, 2003 Use the GetFolderPath method of the system.Environment class. It will return a path to a special folder that you specify using the system.Environment.SpecialFolder enumeration. Dim mydocs as String = system.Environment.GetFolderPath(Environment.SpecialFolder.Personal) Quote
angula Posted December 17, 2003 Author Posted December 17, 2003 Thank you. It was the system.environment which had me stumped. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.