函数:hlfs.copyFile 复制文件
函数分类:ts.so
函数名称:复制文件
函数功能:复制单个文件,并把拷贝到新的目录下
函数方法
flag = hlfs.copyFile(oldpath,newpath)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
oldpath | stirng | 是 | 要拷贝的文件路径 |
newpath | stirng | 是 | 新的文件路径 |
返回值 | 类型 | 说明 |
---|---|---|
flag | boolean | true - 复制成功,false - 复制失败 |
函数用例
local ts = require("ts")
creatflag = ts.hlfs.makeDir(userPath().."/hello/") --新建文件夹
if creatflag then
io.open(userPath().."/hello/test.txt","w"):write("测试"):close()
--在 /hello/ 目录下创建一个 test.txt 的文件夹并写入"测试"这个字符串
status = ts.hlfs.copyFile(userPath().."/hello/test.txt",userPath().."/res/test.txt") --复制文件
if status then
dialog("复制成功")
else
dialog("复制失败")
end
else
dialog("创建失败")
end