萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Lua獲取文件長度和判斷文件是否存在函數

Lua獲取文件長度和判斷文件是否存在函數

   這篇文章主要介紹了Lua獲取文件長度和判斷文件是否存在函數分享,需要的朋友可以參考下

  獲得文件長度

   代碼如下:

  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

copyright © 萬盛學電腦網 all rights reserved