Clone creation time and attributes

what is the best way to clone the last modified date and creation date from one file to another ?
in fact making all the attributes identical would be ideal for what i want to do
thanks

I don't believe there is a native clone date/time capability in Opus but you can create a button to do this with ExifTool, as follows:

// Set dest file modified date = source file modified date // Operate on selected images @runmode hide @nodeselect @firstfileonly {alias|imagetools}\exiftool -tagsfromfile {f} -FileModifyDate {fd}
Regards, AB

[quote="aussieboykie"]I don't believe there is a native clone date/time capability in Opus but you can create a button to do this with ExifTool, as follows:

// Set dest file modified date = source file modified date // Operate on selected images @runmode hide @nodeselect @firstfileonly {alias|imagetools}\exiftool -tagsfromfile {f} -FileModifyDate {fd}
Regards, AB[/quote]
thanks for the tip, i get the idea but is beyond my skill level to implement