I am wanting to get yesterday's date into a char in the format: YYYYMMDD (with no slashes dots etc.).

I am using this code to get today's date:

time_t now;

struct tm  *ts;  
char yearchar[80]; 

now = time(NULL);  
ts = localtime(&now);

strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);

How would I adapt this code so that it is generating yesterday's date instead of today's?

Many Thanks.

link|improve this question

67% accept rate
Yesterday's date is "2011-01-19". SCNR. – sbi Jan 20 '11 at 15:33
You might want to convert your time to a tm struct, so that you have control over hours, mins, etc. explicitly. Often we want yesterday's midnight rather than 24 hours ago, etc. (example: cplusplus.com/reference/clibrary/ctime/localtime) – john personna Jan 20 '11 at 15:39
1  
@sbi: virtual -1 He wants no punctuation, so the correct answer is 20110119 :-) – JeremyP Jan 20 '11 at 18:00
feedback

6 Answers

how about adding

now = now - (60 * 60 * 24)

Might fail in some VERY rare corner cases (e.g. during leapseconds) but should do what you want 99.999999% of the time.

link|improve this answer
1  
This would have broken horribly on January 1, 1970, but I don't see any reason why it would today :) – Tim Post Jan 20 '11 at 15:29
That won't work, time(3) returns milliseconds. – Charlie Martin Jan 20 '11 at 15:29
1  
The time() function returns the value of time in seconds since 0 hours, 0 minutes, 0 seconds, January 1, 1970, Coordinated Universal Time. If an error occurs, time() returns the value (time_t)-1. – Tyler Eaves Jan 20 '11 at 15:30
1  
In the C standard, time() just returns the time in an unspecified encoding - it's POSIX that restricts it to the encoding you describe. – caf Jan 21 '11 at 2:01
1  
What about DST transitions? – dan04 Jan 21 '11 at 2:42
feedback

Simply subtracting one day's worth of seconds from time(NULL); should do. Change this line:

now = time(NULL);

to this:

now = time(NULL) - (24 * 60 * 60);
link|improve this answer
feedback

You're pretty close on. First of all, Tyler's solution will almost work -- you need to use (24*60*60*1000) since time(3) returns milliseconds. But have a look at that struct tm. It has fields for all the components of a date.

Update: Damn, my mistake -- time(3) does return seconds. I was thinking of another call. But have a look at the contents of struct tm anyway.

link|improve this answer
feedback

You can manipulate the contents of the ts struct before passing it to strftime. The day of the month is contained in the tm_mday member. Basic procedure:

/**
 * If today is the 1st, subtract 1 from the month
 * and set the day to the last day of the previous month
 */
if (ts->tm_mday == 1)
{
  /**
   * If today is Jan 1st, subtract 1 from the year and set
   * the month to Dec.
   */
  if (ts->tm_mon == 0)
  {
    ts->tm_year--;
    ts->tm_mon = 11;
  }
  else
  {
    ts->tm_mon--;
  }

  /**
   * Figure out the last day of the previous month.
   */
  if (ts->tm_mon == 1)
  {
    /**
     * If the previous month is Feb, then we need to check 
     * for leap year.
     */
    if (ts->tm_year % 4 == 0 && ts->tm_year % 400 == 0)
      ts->tm_mday = 29;
    else
      ts->tm_mday = 28;
  }
  else
  {
    /**
     * It's either the 30th or the 31st
     */
    switch(ts->tm_mon)
    {
       case 0: case 2: case 4: case 6: case 7: case 9: case 11:
         ts->tm_mday = 31;
         break;

       default:
         ts->tm_mday = 30;
    }
  }
}
else
{
  ts->tm_mday--;
}

Edit: Yes, days of the month are numbered from 1 whereas everything else (seconds, minutes, hours, weekdays, and days of the year) are numbered from 0.

link|improve this answer
1  
This is unnecessary, because mktime() will normalise a struct tm for you. – caf Jan 21 '11 at 2:02
feedback
time_t now;
int day;

struct tm  *ts;  
char yearchar[80]; 

now = time(NULL);  
ts = localtime(&now);
day = ts->tm_mday;

now = now + 10 - 24 * 60 * 60;
ts = localtime(&now);
if (day == ts->tm_mday)
{
  now = now - 24 * 60 * 60;
  ts = localtime(&now);
}

strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);

Will work with leap seconds too.

link|improve this answer
feedback

The mktime() function will normalise the struct tm that you pass it - so all you need to do is this:

now = time(NULL);
ts = localtime(&now);
ts->tm_mday--;
mktime(ts); /* Normalise ts */
strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.