如何从Lua文件中读取数据

前端之家收集整理的这篇文章主要介绍了如何从Lua文件中读取数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道有没有办法从文件读取数据,或者只是看看它是否存在并返回true或false
function fileRead(Path,LineNumber)
  --..Code...
  return Data
end

解决方法

尝试这个:
-- http://lua-users.org/wiki/FileInputOutput

-- see if the file exists
function file_exists(file)
  local f = io.open(file,"rb")
  if f then f:close() end
  return f ~= nil
end

-- get all lines from a file,returns an empty 
-- list/table if the file does not exist
function lines_from(file)
  if not file_exists(file) then return {} end
  lines = {}
  for line in io.lines(file) do 
    lines[#lines + 1] = line
  end
  return lines
end

-- tests the functions above
local file = 'test.lua'
local lines = lines_from(file)

-- print all line numbers and their contents
for k,v in pairs(lines) do
  print('line[' .. k .. ']',v)
end
原文链接:https://www.f2er.com/lua/274668.html

猜你在找的Lua相关文章