Divider/Line after X number of files in list

Various websites I use only allow X amount of files to be uploaded at one time. Is it possible to add a small spacing/dashed line after X number of files in a specific folder?

Here is a sketch of what I mean:

1 Like

I don't think it's currently possible (other than every 100 files, if you group by the Index column), but we have something planned that would enable that with an arbitrary number per group.

4 Likes

If your goal is to quickly select a certain number of files, I can recommend SelectNext.

1 Like

any indication when this will be added, many thanks!

It can be done in Opus 13 using Evaluatior Groups.

return ((value+9)/10) + "";

(The + “” may not be needed now. Haven’t had a chance to check since I made the screenshot.)

Edit: The group should be applied to the General > Index columns.

To set it up, go to Preferences / File Display Columns / Evaluator Groups.

3 Likes

The eval clause can be as short as

(value+9)/10
3 Likes

Thankyou, I have managed to get this setup. Is there anyway for it to not include sub folders in the grouping?

You could hide them with a filter or assign them to an extra group, e.g.:

is_dir ? 9999 : (value+9)/10