# FileSystemManager.copyFile

复制本地文件/目录。

# 支持说明

应用能力 Android iOS PC 预览效果
小程序 3.12.0 3.11.0 3.10.0
扫码预览
用BoosHi扫码或PC端点击
网页应用 待开发 待开发 待开发 待补充

# 输入

继承标准对象输入,扩展属性描述:

名称 数据类型 必填 默认值 描述
srcPath string 源文件路径
destPath string 目标文件路径

# 输出

继承标准对象输出,无扩展属性

# 代码示例

const fileSystemManager = bz.getFileSystemManager();
const srcPath = `bzfile://temp/some_path`;
const destPath = `bzfile://temp/some_path_copy`;

fileSystemManager.copyFile({
  srcPath,
  destPath,
  success(_res) {
    console.log("拷贝成功");
  },
  fail(res) {
    console.log("拷贝失败", res.errMsg);
  },
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
最后更新于 : 5/18/2023, 3:09:13 PM