我试过用
http://keplerproject.github.io/luafilesystem/examples.html
并且它在无法访问的目录上引发错误.
这似乎是由luaL_error https://github.com/keplerproject/luafilesystem/blob/master/src/lfs.c#L563引起的
我怎么能抓到这个错误?
http://www.tutorialspoint.com/lua/lua_error_handling.htm
建议pcall,但这不会阻止脚本死亡:
pcall(lfs.dir('/etc/passwd')) #this fails to handle the not a directory error解决方法 pcall(lfs.dir(‘/ etc / passwd’))失败,因为错误是在pcall之外触发的(当计算pcall的参数时).你需要使用
local ok,res = pcall(lfs.dir,'/etc/passwd')
请注意,传递给lfs.dir的参数是给pcall的,而不是lfs.dir.
总结以上是内存溢出为你收集整理的错误处理 – Lua错误处理全部内容,希望文章能够帮你解决错误处理 – Lua错误处理所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)