1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
local meta_tools = {}
function meta_tools.file_exists(name)
local f = io.open(name, 'r')
if f ~= nil then
io.close(f)
return true
else
return false
end
end
function meta_tools.read_link_file(name)
local f = io.open(name, 'r')
if f ~= nil then
local output = {}
for line in f:lines() do
table.insert(output, line)
end
f:close()
return output
else
return {}
end
end
function meta_tools.write_link_file(name, links)
local f = io.open(name, 'w')
for i,v in ipairs(links) do
f:write(string.format("%s\n", v))
end
f:close()
end
function meta_tools.get_note(note_name)
local file = io.open(string.format("build/%s.meta", note_name), "r")
local note = {}
for line in file:lines() do
local sep = string.find(line, ",")
local index = string.sub(line, 1, sep-1)
local content = string.sub(line, sep+1, -1)
note[index] = content
end
note["note_name"] = note_name
file:close()
return note
end
return meta_tools
|