Get creation time of files for any platform and no external dependencies.
Linux requires sudo! There is no way to avoid this, as creation time is not exposed by the kernel.
It uses debugfs to mount the filesystem, as the information is actually contained on most linux platforms.
Speed: because it does one query for a whole directory, it is roughly 1000x faster than any other method (such as the xstat
utility that can be found online).
pip install crtime
In a shell:
crtime .
# 1552938709\tfile_a.py
In Python
from crtime import get_crtimes_in_dir
for fname, date in get_crtimes_in_dir(".", raise_on_error=True, as_epoch=False):
print(fname, date)
# file_a.py Mon Mar 18 20:51:18 CET 2019