Cocos2d-x Lua:获取文件大小的函数实现 发表于 2023-03-21 更新于 2024-11-15 分类于 游戏开发 阅读次数: Valine: 本文字数: 373 阅读时长 ≈ 1 分钟 Cocos2dx-lua返回指定文件的大小 返回指定文件的大小,如果失败返回 false 123456789101112131415-- @function [parent=#io] filesize-- @param string path 文件完全路径-- @return integer#integerfunction io.filesize(path) local size = false local file = io.open(path, "r") if file then local current = file:seek() size = file:seek("end") file:seek("set", current) io.close(file) end return sizeend 打赏 微信支付 支付宝 本文作者: 南锋 本文链接: https://lengmo714.top/6deadeef.html 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!