Lol, this is unexpected and sad 

Installed "file-attributes" library to retrieve ctime from files and got "Not implemented"

#CommonLisp #programming

BTW, SBCLs "(sb-posix:stat-ctime (sb-posix:stat filename))" somehow returns wrong ctime — I got 1956 as a file creation year, while IRL it is equal to 2026 

#CommonLisp #SBCL

@evgandr How are you interpreting the result of ctime? It wouldn't be compatible with lisp universal times which have a different epoch. You'll need to adjust accordingly or use something that's aware of the unix epoch. The local-time package probably has something useful.