The purpose is to move the selection of images and/or videos to the corresponding image or video destination folder.
The selected folders contain only one file type, either images or videos, but not a mixture of both.
The operation is correct when a group of files is selected, even if the selection contains both types of files. However, when the selection contains folders, where you have to find out the single type of files they contain in order to send the selected folder to the appropriate destination folder, the operation is faulty.
Please, I need help to find out and fix where the error is.
Thank you very much in advance.
tell application "Finder" to set sel to selection as alias list
if sel is {} then
display dialog "No selection found" with title " Error in selection" with icon 0 giving up after 2
error number -128
end if
set pathFolder to "Path/to/favorite/images/folder"
set pathVideo to "Path/to/favorite/videos/folder"
tell application "Finder"
activate
repeat with i from 1 to count sel
set targetFolder to (POSIX file pathTarget) as alias
-- Is it a video?
if ("video" is in ((kind of item i of sel) as string)) then set targetFolder to pathVideo
-- is it a folder?
if ("folder" is in ((kind of item i of sel) as string)) then
-- Knowing the type of files contained in the folder
tell application "System Events" to tell process "Finder"
keystroke "o" using command down -- open folder
delay 0.1
key code 125 -- select the first item (all files in the selected folder will be the same type as the first file: images or videos)
delay 0.1
tell application "Finder" to set itemFirst to selection as alias list
set fileFirst to item 1 of itemFirst
if (length of itemFirst = 0) or ("folder" is in ((kind of fileFirst) as string)) then
display dialog "No item selected or the first item is again from a folder" giving up after 2
error number -128
end if
if ("video" is in ((kind of fileFirst) as string)) then set targetFolder to (POSIX file pathVideo) as alias
key code 126 using command down
end tell
end if
-- duplication error ?
try
set fileDuplicate to duplicate (item i of sel) to targetFolder with replacing -- ###
delay 0.1
on error
display dialog "Error in the duplication of " & item i of sel with icon 0 giving up after 1
end try
-- error in deleting the original item ?
try
delete item i of sel
on error
display dialog "Error in the deletion of " & item i of sel with icon 0 giving up after 1
end try
end repeat
end tell