Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Obtaining oldest file in a directory
Message
 
To
17/09/2008 18:53:31
Timothy Bryan
Sharpline Consultants
Conroe, Texas, United States
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 3.0
OS:
Windows XP SP2
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01348390
Message ID:
01348480
Views:
14
Hi Tim,

since you are only interested in the name you could modify the code like this:
System.IO.DirectoryInfo info = new System.IO.DirectoryInfo(@"C:\");
String name = info.GetFiles("*.jpg").OrderBy(x => x.LastWriteTime).First().Name;
I'm not sure which date you want to check. LastWriteTime would be the time stamp you see in Explorer.
--
Christof
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform