load last scene by date

Hello, is someone here knows how to find the last scene by modification date?
by advance, thanks

camName = "100_20"
LoadPath = getFiles ("Z:\\prod\\"+camName+"\\"+camName+"*.max")
-- open last scene by date founded:
if LoadPath.count != 0 do
(
for f in LoadPath do
(
-- open last scene
resetMaxFile #noPrompt
loadMAXFile f quiet:true
)
)