vote up 4 vote down star

How do I programatically (Using C#) find out what the path is of my My Pictures folder?

Does this work on XP and Vista?

flag

3 Answers

vote up 14 vote down check

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);
link|flag
vote up 2 vote down

Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.