Access Windows special directories (My document, Desktop, Program Files)
October 12, 2009
Twitter's a new exciting social media. And guess what, I'm quite active on it. Follow me on Twitter to get the latest links and updates.
You can easily access to special directories of windows in C# by using:
Environment.SpecialFolder.MyDocuments;
The same go with other directories
Environment.SpecialFolder.Desktop; Environment.SpecialFolder.History; ...

Leave a Reply