Is there an Opus equivalent to the "Date" column as implemented in Win10 File Explorer?

You can use a custom column to retrieve the value from the shell properties.

This add-in uses System.ItemDate.

function OnInit(initData) {
    initData.name = 'SystemItemDate';
    initData.version = '2022-03-19';
    initData.url = 'https://resource.dopus.com/t/is-there-an-opus-equivalent-to-the-date-column-as-implemented-in-win10-file-explorer/40834';
    initData.desc = 'Retrieves System.ItemDate from the Shell (File Explorer\'s "Date")';
    initData.default_enable = true;
    initData.min_version = '12.0';
}

function OnAddColumns(addColData) {
    var col = addColData.AddColumn();
    col.name = 'SystemItemDate';
    col.label = 'SystemItemDate';
    col.header = 'SystemItemDate';
    col.justify = 'left';
    col.type = 'datetime';
    col.autogroup = true;
    col.method = 'OnColumn';
}

function OnColumn(scriptColData) {
    scriptColData.value = scriptColData.item.ShellProp('System.ItemDate');
}

ColumnSystemItemDate.js.txt (832 Bytes)

This property might not be the one you are looking for. Use this script to find the right one:

General advice:

1 Like