Get a folder of recent documents in .NET.

How to get the path to the folder of recent documents using C #?

+6
c #
source share
1 answer

Cm:

System.Environment.SpecialFolder.Recent 

So:

 DirectoryInfo d = new DirectoryInfo( System.Environment.GetFolderPath(Environment.SpecialFolder.Recent) ); 
+20
source share

All Articles