I have an array of filenames, is there any way to sort these files by modification date?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the
|
|||
|
File.mtimevs.File.ctime, with a subtle difference between the two. – the Tin Man Jan 20 '11 at 19:38File.ctimerefers to the time the file was created, not modified. – Mark Szymanski Jan 20 '11 at 19:41"Returns the change time for the named file (the time at which directory information about the file was changed, not the file itself)."Only Windows supports file creation date. *nix only understands the modification times. – the Tin Man Jan 20 '11 at 19:51