Comment vérifier si le fichier existe Lua

function file_exists(name)
   local f=io.open(name,"r")
   if f~=nil then io.close(f) return true else return false end
end
Calm Crocodile