How can I extract the date from the "Media Created" column of a video file?

The extended file properties can be obtained by using Folder.GetDetailsOf() method. As per this thread, the Media Created Date can be retrieved using a property id of 177.


There are another way to retrieve data, using the Microsoft.WindowsAPICodePack.Shell namespace.

ShellObject shell = ShellObject.FromParsingName(path);

var data = shell.Properties.System.Media.DateEncoded;