Linux File Systems – What File Systems on Linux Store the Creation Time?

filesystemslinuxtimestamps

Are there any (good known, reliable) file systems on Linux that store the creation time of files and directories in the i-node table?

If there are, is the "changed" time replaced by the creation time of an i-node in a stat call?

Best Answer

The ext4 file system does store the creation time. stat -c %W myfile can show it to you.

Related Question