How do I get the time that a file was created?
What I have found: The lfs library for Lua contains a method to get file attributes. However, the only ones that seem to get close to answering my question are those:
- access - time of last access
- modification - time of last data modification
- change - time of last file status change
None of them, by their descriptions, check for the creation time specifically. I've been googling for a while and can't find the answer.
EDIT: I'm on a windows system.