vote up 7 vote down star
1

I am using a file stream to write out a file.

I was hoping to be able to write the file to the desktop.

If I have something like

tw = new StreamWriter("NameOflog file.txt");

I would like to be able to have some sort of @desktop identified in front of the file name that would automatically insert the path to the desktop. Does this exist in C#? OR do I have to look and see what there desktop is on a computer by computer(OS by OS) basis.

flag

6 Answers

vote up 19 vote down check

Quick google search reveals this one:

string strPath = Environment.GetFolderPath(System.Environment.SpecialFolder.DesktopDirectory);

EDIT: This will work for Windows, but Mono supports it, too.

link|flag
had to add \\ between the two but that is perfect. Thanks – Brian Apr 29 at 12:45
10  
Don't add \\ manually. Use Path.Combine instead. – OregonGhost Apr 29 at 12:46
4  
And you don't need to call ToString() on a string – Marc Gravell Apr 29 at 12:47
Note that according to msdn.microsoft.com/de-de/library/… this will only work on Windows, so for other OS, you might check if it works first. – schnaader Apr 29 at 12:49
1  
@schnaader: I do believe it also works on Mono/Linux (it should return "/home/username/desktop"). – Noldorin Apr 29 at 13:07
show 2 more comments
vote up 0 vote down

You want Environment.SpecialFolder

string fileName = "NameOflog file.txt";
path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), fileName);
tw = new StreamWriter(path);
link|flag
vote up 2 vote down

yep. you can use environmental variables. like

tw = new StreamWriter("%USERPROFILE%\Desktop\mylogfile.txt");

but i would not recommend to automatically write a log file to the users desktop. you should add the link to the file to your start menu folder. or even populate them in the event log. (much better)

link|flag
vote up 6 vote down

Something like:

    string logPath = Path.Combine(
        Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
        "NameOflog file.txt");
    tw = new StreamWriter(logPath);
link|flag
+1 This one works verbatim! ;-) – Codex Apr 29 at 14:55
vote up 1 vote down
Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory))
link|flag
vote up 9 vote down

You want to use Environment.GetFolderPath, passing in SpecialFolder.DesktopDirectory.

There's also SpecialFolder.Desktop which represents the logical desktop location - it's not clear what the difference between the two is though.

link|flag
3  
Holy cow, Jon Skeet was beat to the punch. Jon, you're not losing your edge on us, are ya buddy? :) – TheTXI Apr 29 at 12:45
I was busy looking up the links :( – Jon Skeet Apr 29 at 12:46
2  
Come on Jon, you're supposed to have this stuff memorized by now :) – TheTXI Apr 29 at 12:50
2  
The difference may have to do with folder redirection via group policy. Perhaps the SpecialFolder.Desktop refers to the actual location of the folder instead of its normal path on the hard drive – Jason Miesionczek Apr 29 at 13:03
...like in setups where your Desktop is stored in your profile, which is then actually physically located up on a central server? – mkmurray Aug 16 at 5:52
show 1 more comment

Your Answer

Get an OpenID
or

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