To start: My code depends on Boost.

I need to alter file creation dates to inject errors into my unit tests.

Is there a portable way, either in the STL, or C++ standard libraries, or boost(::filesystem), to do this ? If not does anyone know of a good simple C++ header-only (or very simple) abstraction that will complement what is in boost /STL/STD ?

If not I require the headers / function names / data structures for artificially changing the creation date of a file post-creation on windows and Linux (or a more unix-wide portable solution).

Any pointers will help.

link|improve this question

73% accept rate
you need creation date or modified date? – Sam Miller Jan 12 '11 at 3:26
I needed creation date, i'm building a windows registry-esque key-object serialization mechanism for protocol buffer objects on the filesystem. It has a two phase commit, so I need to modify creation date to corrupt a partial two phase commit. – Hassan Syed Jan 12 '11 at 10:30
feedback

1 Answer

up vote 3 down vote accepted

The POSIX solution would be utimes.

#include <sys/time.h>

int utimes(const char *filename, const struct timeval times[2]);

The win32 solution would be SetFileTime.

link|improve this answer
simple enough, thanks :D – Hassan Syed Jan 12 '11 at 10:28
feedback

Your Answer

 
or
required, but never shown

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