Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get a path to the desktop for current user in C#?

The only thing I could find was the VB.NET-only class SpecialDirectories, which has this property:

My.Computer.FileSystem.SpecialDirectories.Desktop

How can I do this in C#?

share|improve this question
1  
Suggestion: try msdn.microsoft.com before Google. You'll start off with a more focused response, and they include non-Microsoft content now. If you don't find it, then try Google. This answer is on the first page of results. – John Saunders Mar 11 '09 at 11:35
I did try msdn. I was probably not asking the right question though. – Cristi Diaconescu Mar 11 '09 at 11:38
You've got a point. They have some bugs there. I'll report this one. I tried the following and it was not optimal: social.msdn.microsoft.com/Search/en-US/… – John Saunders Mar 11 '09 at 12:43
2  
@John Saunders: +1 for the search methods. @All, you can also go to google.com/microsoft to narrow google searchs to MS related sites – Steve B Feb 21 '11 at 10:10
1  
@JohnSaunders If you search msdn.microsoft.com for "get user desktop path", the first hit is now this question :) – Nik Reiman Nov 1 '12 at 18:07
show 1 more comment

3 Answers

up vote 169 down vote accepted
string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
share|improve this answer
The items returned from this folder is different to what Window Explorer shows. E.g. in my XP, it doesn't include My Documents, My Computer, My Network Places, Recycle Bin and some other shortcuts. Any idea how to get the same entries as Windows Explorer? – miliu Mar 21 at 20:24
 string filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
 filePath =filePath +@"\Error Log\";
 string extension = ".log";
 if (!Directory.Exists(filePath))
 {
      Directory.CreateDirectory(filePath);
 }
share|improve this answer
string var = Environment.ExpandEnvironmentVariables("%USERPROFILE%") + @"\Desktop";   
share|improve this answer
3  
This is wrong - you shouldn't be reading environment variables when there's a built-in API for this. – skolima May 24 '11 at 7:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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