Hi I wonder if there is a way to determine the last photo taken with the camera I tried grep'ing the last line from gphoto -L but it does not always give me the last photo because of multiple folders.
/Niclas
Logged In: YES user_id=48092
Usual the camera increments the internal image counter, so you could just go look for the highest DSCN%d or IMG_%d or whatever number.
is however camera specific.
Another way would be to get the exif information for all oif them and check the newest date.
This might however cause dowloading of all images (for cameras that do not support exif / partial gets).
Log in to post a comment.
Logged In: YES
user_id=48092
Usual the camera increments the internal image counter,
so you could just go look for the highest
DSCN%d or IMG_%d or whatever number.
is however camera specific.
Another way would be to get the exif information for all
oif them and check the newest date.
This might however cause dowloading of all images (for
cameras that do not support exif / partial gets).