Can you name me some dead-easy way of getting the current "yyyymmdd" (e.g. "20121219") string from C++? Boost is allowed, so that should make it easier. I could use ctime but it's a bit of a pain to set up that structure.
I already did this
boost::gregorian::date current_date(boost::gregorian::day_clock::local_day());
int year_int = current_date.year();
int month_int = current_date.month();
int day_int = current_date.day();
and then converting the ints to strings using
std::string year = boost::lexical_cast<std::string>(year_int);
std::string month = boost::lexical_cast<std::string>(month_int);
std::string day = boost::lexical_cast<std::string>(day_int);
But the problem with this is that day 1 will be "1" instead of "01" as it should be.