欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Lua获取文件长度和判断文件是否存在函数分享

程序员文章站 2022-04-29 08:49:36
获得文件长度 复制代码 代码如下:  function length_of_file(filename)   local fh = assert(...

获得文件长度

复制代码 代码如下:

 function length_of_file(filename)
  local fh = assert(io.open(filename, "rb"))
  local len = assert(fh:seek("end"))
  fh:close()
  return len
end

判断文件是否存在
复制代码 代码如下:

function file_exists(path)
  local file = io.open(path, "rb")
  if file then file:close() end
  return file ~= nil
end