запись и чтение

back.DEV

Известный
Автор темы
71
6
Версия MoonLoader
.026-beta
Подскажите пожалуйста может видели где-то уже существующую функцию для записи и чтения из json файлов, чтобы я туда мог сохранять какие либо данные
 
Решение
кажется салатовская функа, не помню

Lua:
jsoncfg = {
   save = function(data, path)
      if doesFileExist(path) then os.remove(path) end
      if type(data) ~= 'table' then return end
      local f = io.open(path, 'a+')
      local writing_data = encodeJson(data)
      f:write(writing_data)
      f:close()
   end,
   load = function(path)
      if doesFileExist(path) then
         local f = io.open(path, 'a+')
         local data = decodeJson(f:read('*a'))
         f:close()     
         return data
      end
   end
}

Rei

Известный
Друг
1,618
1,678
кажется салатовская функа, не помню

Lua:
jsoncfg = {
   save = function(data, path)
      if doesFileExist(path) then os.remove(path) end
      if type(data) ~= 'table' then return end
      local f = io.open(path, 'a+')
      local writing_data = encodeJson(data)
      f:write(writing_data)
      f:close()
   end,
   load = function(path)
      if doesFileExist(path) then
         local f = io.open(path, 'a+')
         local data = decodeJson(f:read('*a'))
         f:close()     
         return data
      end
   end
}
 
  • Нравится
Реакции: back.DEV и leekyrave

ImPasha

Software Developer & System Administrator
Друг
1,788
2,145