repeat with i from 1 to the count of droppedItems
set currentItem to (item i of droppedItems)
tell application "Finder" to set theKind to kind of currentItem
if theKind is "Folder" then
Well, that could do it; if kind is not Folder, then it has to be a
file. But I was hoping that there's a way to do it without stepping
through the list of items one by one, but that could generate two
lists--one of files and one of folders, without a loop.