I have a FOLDER named iSEEu on the desktop. I wanted any folder whose name contains “Video” to be moved to this file. I wrote this script. It does not show any errors, but nothing happens. Any ideas? Thanks!
tell application "Finder"
get name of files
set fileName to name of files
move (files whose fileName contains "Video") to folder "iSEEu"
end tell