admin管理员组文章数量:1559079
一、基本的文件读写
(1) io.open
功能:按指定的模式打开一个文件,成功则返回文件句柄,失败则返回nil 错误信息
file = io.open (filename [, mode])
mode 的值有:
r 以只读方式打开文件,该文件必须存在。
w 打开只写文件,若文件存在则文件长度清为0,即该文件内容会消失。若文件不存在则建立该文件。
a 以附加的方式打开只写文件。若文件不存在,则会建立该文件,如果文件存在,写入的数据会被加到文件尾,即文件原先的内容会被保留。(eof符保留)
r 以可读写方式打开文件,该文件必须存在。
w 打开可读写文件,若文件存在则文件长度清为零,即该文件内容会消失。若文件不存在则建立该文件。
a 与a类似,但此文件可读可写
b 二进制模式,如果文件是二进制文件,可以加上b
号表示对文件既可以读也可以写
(2) file:write(...)
功能:按指定的参数格式输出文件内容,参数必须为字符或数字,若要输出其它值,则需通过tostring或string.format进行转换
(3) file:close()
功能:关闭文件,我抽u盘才懒得'安全删除硬件',一般都直接拔了.这个命令也一样,反正lua有垃圾自动回收........
(4) io.lines ([filename])
功能:打开指定的文件filename为读模式并返回一个迭代函数,每次调用将获得文件中的一行内容,当到文件尾时,将返回nil,并自动关闭文件
(5) io.popen ([prog [, mode]])
功能:开始程序prog于额外的进程,并返回用于prog的文件句柄(并不支持所有的系统平台)
二、常用文件操作
(1)判断文件是否存在
function checkfileexist(path)
local file = io.open(path, "rb")
if file then file:close() end
return file ~= nil
end
(2)判断文件夹是否存在()
os.execute("cd "..dirpath)
返回值为0便是存在,不为0时表示不存在
(3)创建文件夹
os.execute("mkdir "..dirpath)
(4)删除文件
os.remove(filepath)
eg:创建多层文件夹
configs.debugfilepath = "e:/test1/test2/test3/test4/test.txt"
function checkdirexist()
local dirlist = string.split(configs.debugfilepath,"/")
local filenamelen = string.len(dirlist[#dirlist])
local dirpath = string.sub(configs.debugfilepath,1,string.len(configs.debugfilepath)-filenamelen-1)
local path_tb={}
local new_path=""
-- 分割路径保存到table
for s in string.gmatch(dirpath,"([^'/'] )") do
if s~=nil then
table.insert(path_tb,s)
end
end
-- 遍历并拼接路径检测是否存在,不存在则新建
for k,v in ipairs(path_tb) do
if k==1 then
new_path=v
else
new_path=new_path.."\\"..v
end
if os.execute("cd "..new_path) ~= 0 then
os.execute("mkdir "..new_path)
end
end
end
(5)获得文件夹下的所有文件路径(windows)
io.popen("dir path /b /s")
eg:
local dirinfo= io.popen("dir path /b /s")
local all = dirinfo:read("*all")
本文标签:
j9九游会老哥俱乐部交流区的版权声明:本文标题:lua常用的文件操作 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://www.elefans.com/dongtai/1727333554a1108824.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论