Location of My Pictures Location of My Pictures windows windows

Location of My Pictures


The following will return a full-path to the location of the users picture folder (Username\My Documents\My Pictures on XP, Username\Pictures on Vista)

Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);


Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);


Using Microsoft.VisualBasic.FileIO.SpecialDirectories.MyPictures you can get that, works in vista and XP.