前言# 从文章的题目可以看出,今天的内容是和文件的行相关的,其实这个函可以看成是一个文件读取函数,只不过文件读取的形式固定了,就是只能一行一行的读,接下来我们就一起来看看这个函数究竟要怎么使用. 内容# iolines()## 原型:io.lines ([filename]) 解释:按文件名以读的模式打开一个文件,并且返回一个迭代函数,这个迭代函数每一次被调用都会返回文件中新的一行的内容,直到文件中所有的内容都被读完,常用的代码形式为for line in io.lines(filename)…
io.exists 测试文件是否存在,如果存在返回 true. 格式: result = io.exists(路径) 可以使用 CCFileUtils:fullPathForFilename() 函数查找特定文件的完整路径,例如: local path = CCFileUtils:sharedFileUtils():fullPathForFilename("gamedata.txt") if io.exists(path) then .... end…
Introduction From a running C program, you can call a Lua script. The C program can pass arguments to the Lua script, and the Lua script can pass back a return. The Lua script can serve to initialize the C program, or the Lua script can install a cal…