There is no language-specific way to do this, however the OS provides the required functionality. In a unix system, the stat
function is what you need. There is an equivalent _stat
function provided for windows under Visual Studio.
So here is code that would work for both:
#include <sys/types.h>
#include <sys/stat.h>
#ifndef WIN32
#include <unistd.h>
#endif
#ifdef WIN32
#define stat _stat
#endif
auto filename = "/path/to/file";
struct stat result;
if(stat(filename.c_str(), &result)==0)
{
auto mod_time = result.st_mtime;
...
}