函数:file.isExist 判断文件(夹)是否存在
函数名称:判断文件(夹)是否存在
函数功能: 判断文件(夹)是否存在
函数方法
flag = file.isExist(file)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
path | string | 是 | 需要判断的文件(夹)路径,支持决定路径及相对路径, 相对路径(仅支持 v1.0.6 及其以上版本) |
返回值 | 类型 | 说明 |
---|---|---|
flag | boolean | true - 文件(夹)存在,false - 文件(夹)不存在 |
函数用例
--相对路径,仅支持 v1.0.6 及其以上版本
--相对路径为当前流程文件夹:/sdcard/LuaBox/Projects/流程名称/
--判断当前流程文件夹下的 main.lua 文件是否存在
path = "main.lua"
--判断当前流程文件夹下 1 文件夹下的 1.lua 文件是否存在
--path = "1/1.lua"
--判断当前流程文件夹下 1 文件夹是否存在
--path = "1/"
flag = file.isExist(path)
if flag then
dialog("文件(夹)存在",5000)
else
dialog("文件(夹)不存在",5000)
end
--绝对路径
path = "/sdcard/LuaBox/Projects/"
flag = file.isExist(path)
if flag then
dialog("文件夹存在",5000)
else
dialog("文件夹不存在",5000)
end
注意事项
相对路径为当前流程文件夹:/sdcard/LuaBox/Projects/流程名称/
目前积木编程函数和触动精灵函数不通用,请仔细查看本手册,此手册中函数仅支持积木编程,不支持触动精灵,同理请勿将触动精灵函数在积木编程运行。