My background is more Web Development so this might be an easy question. I have an MS Word Add-In which was originally built to use Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
It has been reported that we should be using the CSIDL_PERSONAL variable which maps to the registry key for Personal Shell Folder. From what I can tell, the SpecialFolder is the standard way of accessing this but it still seems to resolve to the User's Documents folder even if I change the registry key to a different location such as a network drive.
Does anyone know a better way to use the CSIDL_PERSONAL path or why I am having troubles with the SpecialFolder?