set myPinCushion to {}
set mysize to {}
tell application "Finder"
set myHaystack to every file of entire contents of folder "Yearly Email Storage 2009" of disk "jobs"
end tell
set myNeedles to {"2009-03-10 002133Z.emlx.zip", "2009-03-10 002731Z.emlx.zip", "2009-03-10 014903Z.emlx.zip", "2009-03-10 015107Z.emlx.zip", "2009-03-10 015140Z.emlx.zip", "2009-03-10 015211Z.emlx.zip"}
repeat with myStraw in myHaystack
if (name of myStraw) is in myNeedles then
set end of myPinCushion to (myStraw as alias) -- a bit faster
tell application "Finder"
set temp to properties of myStraw
set end of mysize to physical size of temp
end tell
end if
end repeat
myPinCushion & return & mysize
Returns
{alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 002133Z.emlx.zip", alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 002731Z.emlx.zip", alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 014903Z.emlx.zip", alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 015107Z.emlx.zip", alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 015140Z.emlx.zip", alias "Jobs:Yearly Email Storage 2009:03:2009 03 10:2009-03-10 015211Z.emlx.zip", "
", 49152, 49152, 4096, 8192, 4096, 8192}