Not directly related to question, but might be interesting for some that stumble here.
find command doesn't directly support -older parameter for finding files older than some required date, but you can use negate statement (using accepted answer example):
touch -t 201003160120 some_filefind . ! -newer some_file
will return files older than provided date.