1. ホーム
  2. lua

[解決済み] Luaでファイルからデータを読み込む方法

2022-03-07 22:02:40

質問

ファイルからデータを読み込む方法、あるいはファイルが存在するかどうかを確認し 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
  local 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