Auto Hot Key script for running exiftool on drag-and-drop

This commit is contained in:
Elizabeth Cray 2023-07-08 15:22:34 +00:00
parent 05c11755bd
commit eeb745a81c

19
Shortcuts.AHK Normal file
View File

@ -0,0 +1,19 @@
for n, param in A_Args ; For each parameter:
{
SUPPORTED := "360|3g2|3gp|aax|ai|arq|arw|avif|cr2|cr3|crm|crw|cs1|dcp|dng|dr4|dvb|eps|erf|exif|exv|f4a|f4v|fff|flif|gif|glv|gpr|hdp|heic|heif|icc|iiq|ind|insp|jng|jp2|jpeg|lrv|m4a|m4v|mef|mie|mng|mos|mov|mp4|mpo|mqv|mrw|nef|nksc|nrw|orf|ori|pbm|pdf|pef|pgm|png|ppm|ps|psb|psd|qtif|raf|raw|rw2|rwl|sr2|srw|thm|tiff|vrd|wdp|webp|x3f|xmp|jpg|JPG"
; Cycle Through files, param is full path
If (InStr(FileExist(FolderFile),"D")){
; Is Directory, Cycle and recurse
; TODO
}
Else {
If (RegExMatch(param, "i).*\.(" SUPPORTED ")$")) {
BaseName := RegExReplace(param, "i)\.(" SUPPORTED ")$", "")
Extension := RegExReplace(param, "i)^.*\.(" SUPPORTED ")$", "$1")
If (FileExist(param)){
FixedFile := BaseName ".dexif." Extension
Run, "exiftool.exe" "-all=" "%param%" "-o" "%FixedFile%" ,,Hide
}
}
}
}