function 读取字符串存为数组(路径)
if fileExist(存储路径)==false then
local file = io.open(存储路径, "w")--w创建文件
file:close()--w关闭文件
end
t={}
io.input(存储路径)
while true do
local ReadContent = io.read()
if ReadContent == null then
break
else
end
table.insert(t,ReadContent)
end
if t[1]==nil then
io.close()
return nil
else
io.close()
return t
end
end