函数名称:关闭文件句柄
函数功能:关闭文件句柄
函数方法
io.close()
必填
无
选填
返回值
函数用例
file,msg = io.open("D:\工具\kazhu.txt") if file then nLog("打开成功") file:close() else nLog("打开失败,失败原因:"..msg) end