I love that we can use folderreport to quickly get customised file/folder reports. Unfortunately, the folderreport types with relative paths don't support format templates.
E.g. I'd like to copy files and their size within a folder and it's subfolder to the clipboard: folderreport("filesrel:{fullname}<tab>{size br}","r",,"r");
This works perfectly fine with "files", but not with "filesrel" (as stated in the XYplorer help file).
XYplorer x64 (often the latest beta), Windows 10 Pro 22H2, 3840x2160 scaling 100%
Okay, while I still find it useful to add formatting to relative folderreport types, because it is very intuitive, I found a way to get what I want: copytext replace(folderreport("files:{fullname}<tab>{size br}","r",,"r"),getpathcomponent(, "full")."\","");
XYplorer x64 (often the latest beta), Windows 10 Pro 22H2, 3840x2160 scaling 100%
When I execute text folderreport("files:{fullname}<tab>{size br}","r",,"r");
in a certain folder, I get D:\Zigbee\zigbee2mqtt\data\extension\automations.js 48324
Notice the file size sepparated by a tab.
Whith text folderreport("filesrel:{fullname}<tab>{size br}","r",,"r");
I get automations.js
The formatting (tab and size) is missing.
According to the help file, this is not unexpected behaviour. Only Types "tree", "treeitems", "dirs", "files", and "items" support a format template.
XYplorer x64 (often the latest beta), Windows 10 Pro 22H2, 3840x2160 scaling 100%