Our Windows Forms application by default saves data files in a user's 'My Documents' folder (on XP) or 'Documents' folder (on Vista). We look up this location by calling:
Environment.GetFolderPath( Environment.SpecialFolder.Personal )
We know for sure this works great for users whose personal folder is on a local disk. What we're not sure about is domain users who have Folder Redirection in effect for their profile/personal data folders.
My question is: Does the above call properly resolve regardless of whether Folder Redirection is active?
I don't have the environment to test this out, and I haven't been able to find any definite confirmation one way or the other.