Tiger以降ならSpotlightが集めたメタデータ使えば良い。 on GPSData(aFile) set aPath to quoted form of POSIX path of aFile set latitude to do shell script "mdls -name kMDItemLatitude -raw " & aPath if latitude = "(null)" then return "" set longitude to do shell script "mdls -name kMDItemLongitude -raw " & aPath if longitude = "(null)" then return "" return latitude & "," & longitude end GPSData