In explorer, you can sort files by the following metadata fields
- date
- date created
- date modified
- date taken
- etc.
In C# I only have access to these
FileInfo.LastWriteTimeFileInfo.CreationTimeandFileInfo.LastAccessTime
I'm not quite sure what the 'date' column actually is in explorer, for some files it is equal to date modified, but for others 'date' is older than 'date modified'.
How do I sort by 'date' in C#?