<div dir="ltr">Are you willing to use a shell script to do this? This script uses exiftool to get the information you need from the photo, makes the required directories, and copies the photo to the folder:<br><br>#!/bin/bash<br>exifInfo=$(exiftool -CreateDate $1)<br>year=$(echo $exifInfo | cut -d':' -f 2)<br>month=$(echo $exifInfo | cut -d':' -f 3)<br>day=$(echo $exifInfo | cut -d':' -f 4 | cut -d' ' -f 1)<br>mkdir -p $year/$month/$day<br>cp $1 $year/$month/$day<br><br>(Change the last line from 'cp' to 'mv' to move the photo rather than copy.) <br><br>You could use the script from the command line like this (if you call the script filePhotos and make it executable):<br><br>./filePhotos 20240727-131034-76_v1.jpg<br><br>You could run it on a whole bunch of files like this:<br><br>for i in *.jpg; do ./filePhotos $i; done<br><br><div>There are probably loads of better ways to write this script, but this might give you some clues. Your mileage may vary, use at your own risk etc. </div><br>Gareth</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 26 Jul 2024 at 13:54, stumpy <<a href="mailto:stumpy@posteo.co" target="_blank">stumpy@posteo.co</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi, I have been trying to figure out how to move my photos, using <br>
digikam, to a structure of year month day, something like:<br>
<br>
YYYY/MM/DD/original_file_name.heic (or jpg, or dng, etc)<br>
<br>
Catch is I can't seem to figure it out. I've tried mainly using the <br>
batch que manager but gave up after renaming all my test files<br>
<br>
"YYYY/MM/DDorigonalfilename.jpg" (I didn't' even know I could have a "/" <br>
in the actual file name?<br>
<br>
I am using the v8.4.0 on debian... and would super apprecaite any help <br>
anyone might be able to provide<br>
<br>
<br>
</blockquote></div>