RosettaCodeData/Task/File-size/Lua/file-size.lua

10 lines
188 B
Lua
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
function GetFileSize( filename )
local fp = io.open( filename )
if fp == nil then
return nil
end
local filesize = fp:seek( "end" )
fp:close()
return filesize
end