I am using Dolphin version 18.08.0 (KDE Frameworks 5.54.0, Qt 5.11.3) which has, besides the access and modification times, a separate column for the creation time. Unfortunately this column is empty, although the files do have a crtime
as shown via debugfs -R 'stat INODE' DEVICE
.
Is there any way to display the creation time of the files in Dolphin by default?
$ debugfs -R 'stat /home/old.txt' /dev/sda4
Inode: 3418797 Type: regular Mode: 0644 Flags: 0x80000
Generation: 3373842699 Version: 0x00000000:00000001
User: 1000 Group: 1000 Project: 0 Size: 1106
File ACL: 0
Links: 1 Blockcount: 8
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x5e33cb3d:28fa524c -- Fri Jan 31 07:37:49 2020
atime: 0x5e35ec0f:1e00e7b8 -- Sat Feb 1 22:22:23 2020
mtime: 0x5e33cb3d:28fa524c -- Fri Jan 31 07:37:49 2020
crtime: 0x5e1dec5d:b24a3ea0 -- Tue Jan 14 17:29:17 2020
Size of extra inode fields: 32
Inode checksum: 0xc328f441
EXTENTS:
(0):580854
(END)
stat
understands creation time. The something in between e.g. the virtual-file-system (the layer in the kernel between the real file-system and the user process) does not. – ctrl-alt-delor Feb 02 '20 at 14:27