This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
property destinationFolder : "Path:to:AirDrop:Folder:in:Alias:format" -- Please change this | |
property quarantineTypes : { "59" } | |
on run {input, parameters} | |
tell application "Finder" | |
set filesToMove to {} | |
repeat with iInput from 1 to count input | |
set filePath to item iInput of input | |
set shouldProcess to false | |
if (count quarantineTypes) > 0 then |