摘要: function readfile(path) local file = io.open(path, "r") if file then local content = file:read("*a") io.close(file) return content end return nil end 阅读全文
posted @ 2017-11-03 18:10 履霜坚冰 阅读(13066) 评论(0) 推荐(0) 编辑