toggle webp / jpg extension
Posted: 24 Sep 2020 09:25
I often download images in WEBP format but my browser saves them as *.JPG. Or vice versa. Here is a small script that toggles these extensions for the current file.
Code: Select all
if (gpc(,"ext")=="webp") {renameitem("*.jpg")} elseif (gpc(,"ext")=="jpg") {renameitem("*.webp")};