First: I know that SVN does NOT store the actual file timestamp, but only the last commit time.
Second: When checking out files normaly the timestamp of the file is set to the time of the actual check out. This can be influenced by using options like use-commit-times = yes
in the subversion config file and Set file dates to the 'last commit time'
in Tortoise SVN or use the command svn checkout --config-option config:miscellany:use-commit-times=yes
But I want to actually store the time stamp of the file being checked in AND be able to apply it the the files being check out again!
For source files this isn't a big deal, but we also commit binary third party libraries, for which we realy want to keep the actual file timestamp.
User 'oefe' posted in this thread, that it is possible, but never showed how: https://stackoverflow.com/a/2171973/2339326