Lua 文件读取

Lua 文件读取,第1张

--移除文件

function MkidrremoveFile(path)

              iowritefile(path, "")

               osremove(path)

end

--读取文件

function MkidrreadFile(path)

                  local file = ioopen(path, "rb")

                  if file then

                              local content = file:read("all")

                               ioclose(file)

                               return content

                    end

             return nil

end

-- Lua   lfs 库的使用

lfsattributes(filepath [, aname]) 获取路径指定属性

lfschdir(path) 改变当前工作目录,成功返回true,失败返回nil加上错误信息

lfscurrentdir 获取当前工作目录,成功返回路径,失败为nil加上错误信息

lfsdir(path) 返回一个迭代器(function)和一个目录(userdata),每次迭代器都会返回一个路径,直到不是文件目录为止,则迭代器返回nil

lfslock(filehandle, mode[, start[, length]])

lfsmkdir(dirname)  创建一个新目录

lfsrmdir(dirname) 删除一个已存在的目录,成功返回true,失败返回nil加上错误信息

-- Lua   io *** 作

ioopen (filename [, mode])

功能:按指定的模式打开一个文件,成功则返回文件句柄,失败则返回nil+错误信息

mode:

"r": 读模式 (默认);

"w": 写模式;

"a": 添加模式;

file:write()

功能:按指定的参数格式输出文件内容,参数必须为字符或数字,若要输出其它值,则需通过tostring或stringformat进行转换

file:close()

功能:关闭文件,lua有垃圾自动回收

ioexists()

测试文件是否存在,如果存在返回true

-- Lua   os   *** 作

osremove (filename)

功能:删除文件或一个空目录,若函数调用失败则返加nil加错误信息

osrename (oldname, newname)

功能:更改一个文件或目录名,若函数调用失败则返加nil加错误信息

ossetlocale (locale [, category])

功能:设置程序的当前设置,函数返回最新的值,失败则返回nil

ostime ([table])

功能:按table的内容返回一个时间值(数字),若不带参数则返回当前时间table的字段:

能说的再清楚点么?你说的去掉是怎么去掉?

ioread()的功能和cin一样啊。

知道原因了,你是在scite下直接执行的吧?这个好像是scite的问题。

在命令行提示符下面用lua testlua运行就正常了。

FileStream fs = new FileStream("d:\\atxt", FileModeOpen); StreamReader m_streamReader = new StreamReader(fs); m_streamReaderBaseStreamSeek(0, SeekOriginBegin); string arry = ""; string strLine = m_streamReaderReadLine(); do { string[] split = strLineSplit('='); string a = split[0]; if (aToLower() == "ip") { arry += strLine + "\n"; } strLine = m_streamReaderReadLine(); } while (strLine != null && strLine != ""); m_streamReaderClose(); m_streamReaderDispose(); fsClose(); fsDispose(); ConsoleWrite(arry); ConsoleReadLine(); 如果你要大小写也要匹配的话把ToLower() 去掉就行了

function delay()

  local i=osclock()+1 

  while(osclock()<i) do 

  end

end

f = assert(ioopen("demotxt", "r")) -- demotxt改成输入的文本文件名

lines = {}

for line in f:lines() do 

    lines[#lines + 1] = line 

end

f:close()

for i, l in ipairs(lines) do 

    print(l) 

    delay()

end

以上就是关于Lua 文件读取全部的内容,包括:Lua 文件读取、lua语言的输入问题、lua的io,读取文件,匹配关键字,获取内容下面内容.并返回等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10147593.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存