Reference to "My Pictures" folder

  • Thread starter Thread starter JezB
  • Start date Start date
J

JezB

From within a C# windows application, how can I get a reference (full path)
to the current user's "My Pictures" or "My Documents" folder ?

Please include any namespace references I'll need.

Thanks.
 
Forget it : the old post and solve method worked again : found it myself:

Environment.SpecialFolder.MyPictures
 
JezB said:
From within a C# windows application, how can I get a reference (full
path) to the current user's "My Pictures" or "My Documents" folder ?

Take a look at 'Environment.GetFolderPath'.
 
Back
Top