lua读写文件


cpFile.lua

 1 function copyfile(source, destination)
 2 sourcefile = io.open(source,"r")
 3 assert(sourcefile)
 4 destinationfile = io.open(destination,"w")
 5 assert(destinationfile)
 6 for line in sourcefile:lines() do
 7 print(line)
 8 destinationfile:write(line)
 9 destinationfile:write("\n")
10 end
11 sourcefile:close()
12 destinationfile:close()
13 end

test.lua

1 dofile("./cpFile.lua")
2 copyfile("./test.txt", "dest.txt")


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM