MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / get_file_modification_date

Function get_file_modification_date

gtk/src/callbacks.c:826–839  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

824}
825
826static char *
827get_file_modification_date (const char *filename)
828{
829 GDateTime *datetime;
830 char *result = NULL;
831
832 datetime = get_file_modification_date_time(filename);
833 if (datetime != NULL)
834 {
835 result = g_date_time_format(datetime, "%Y-%m-%d");
836 g_date_time_unref(datetime);
837 }
838 return result;
839}
840
841static char *
842get_file_modification_time (const char *filename)

Callers 1

set_destination_settingsFunction · 0.85

Calls 1

Tested by

no test coverage detected