I have installed nautilus-columns as I wished to view and sort files by the date they were created rather than last modified, but I find that whilst it works for mp3 files it doesn't seem to for ogg. Similarly it works for jpeg but not tiff or raw image files.
Is this behaviour to be expected or has something gone wrong with installation?
Any help would be most welcome.
Thanks,
Steve
In unix, there is no such a thing as the creation time.
There is a semantic problem here: If I have a file
a.txt
first created on oct, 1st , and I create a new file bycp a.txt b.txt
on nov, 1st, what is the creation time ofb.txt
? If you think about nov, 1st. think that I canand have the same final effect:
b.txt
contains exactly the data ofa.txt
, but the metadata linking to the content is created on nov, 1st...It will heavily depend on the filesystem where you have your files stored. Unix-type file system (like all the default linux file system --- ext4, etc.) have no metadata for the first creation date. If you see the manual page for
fstat(2)
, you can see that the data for files is:There is an old ongoing confusion on that
ctime
meanscreation time
(as it is on some MS-DOS derived file system) but in unix there is no such a thing as the first time of creation of a file.So no, in normal unix filesystem you do not have the creation time. You just have the last metadata modification time.
As a sort of post script, I have realised that 'Image Viewer' (bundled with Ubuntu 14.04) is a very good place to view EXIF data.
In Image Viewer just select 'View>Side Pane' or 'Ctrl F9'. Even more info is available by selecting 'Details' at the bottom of the sidebar.
This helped me with the initial problem of wanting to view the date a photo was taken, if not the issues experienced trying to run nautilus-columns.
Thought I'd post this as I was unaware that Image Viewer had that capability, I hope it may help someone else!