I would like to organize my photos. Generally, I select several pictures and then move them to a folder. The naming format is "date + description,"
for example: 20240618 Going out for hotpot with family.
Currently, I am able to achieve that after selecting the photos, by pressing a button, a window pops up allowing me to enter the file name. Upon confirmation, a folder is automatically created with the entered name, and the selected files are moved into this newly created folder.
The internal command I have written so far is as follows:
Copy MOVE TO HERE CREATEFOLDER COPYFILETIMES=all
The difficulties I’m currently facing are:
I don’t know how to pre-fill content when the create folder window pops up (a window appears asking for a name when creating a folder).
I don't know how to retrieve the "modified date" of the first file among multiple selected files (which is actually the photo's shooting time, and may involve reading EXIF information).
Specific functionality I want to achieve:
Essentially, what I'm trying to do is have the program automatically determine the modified date of the first selected file when I've chosen several photos, then automatically fill that into the create folder name dialog. All I need to do is input a theme—which represents these photos that I'd like to organize into one folder—and I can complete sorting and archiving several pictures.
To add some details that I am aware of:
In my batch renaming module, there’s a command like {modifieddate|D#yyyyMMdd} available which retrieves the photo's shooting date (the modified date) for renaming purposes. However, this command seems not to be effective within internal commands.
At present, I'm implementing this by creating a new button in the toolbar through which I'll write commands.