Tag Archives: special folder

Get the MyVideos folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.MyVideos));

For all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonVideos));
Lastest update in June 2011, inital post in June 2011

Get the send to folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.SendTo));

For the all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonSendTo));
Lastest update in May 2011, inital post in May 2011

Get the desktop folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory));

For the all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonDesktopDirectory));
Lastest update in May 2011, inital post in May 2011

Get the template folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.Templates));

For the all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonTemplates));
Lastest update in May 2011, inital post in May 2011

Get the favorites folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites));

For the all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonFavorites));
Lastest update in May 2011, inital post in May 2011

Get the startup folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.Startup));

For all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonStartup));
Lastest update in May 2011, inital post in May 2011

Get the start menu folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.StartMenu));

For all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonStartMenu));
Lastest update in May 2011, inital post in May 2011

Get the MyDocuments folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments));

For all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonDocuments));
Lastest update in May 2011, inital post in May 2011

Get the MyPictures folder

For the current user

System.Environment.GetFolderPath(Environment.SpecialFolder.MyPictures));

For all users

System.Environment.GetFolderPath(Environment.SpecialFolder.CommonPictures));
Lastest update in May 2011, inital post in May 2011