Current problem is I'm working with photos with EXIF data, but XYplorer does not support EXIF data in the listview (which is a big shame). Anyway, I'm editing my photos that I've copied to a working area, but I need to sort them based on Original Creation Date.
I found others' efforts here in getting a work-around, which is acceptable: ie to copy the EXIF OriginalCreationDate into the Created Date using the <dateexif> function.
Now my problem is with processing whole folders. I've got the following script in the Catalogue area, but the selectitems function does not seem to function as expected? What happens if I have many selected is that only the OriginalCreationDate of the first file is used for all the others: I would have expected that selecteditems would select the next as if by the mouse... but that does not seem to be the case??
Code: Select all
$a = get("SelectedItemsPathNames", "|");
foreach($item,$a,"|") {
if($item == "") {break; }
selectitems $item , 0 , 0;
timestamp m c , <dateexif> , $item;
}
XYplorer Beta Club