Skip to content
On this page

FileSystemManager.copyFile

以 Promise 风格调用:不支持

复制文件。

参数

参数类型默认值必填说明
srcPathstring源文件路径,支持本地路径
destPathstring目标文件路径,支持本地路径
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

Example

ts
const fs = ek.getFileSystemManager()
await fs.copyFile({
  srcPath: `${ek.env.USER_DATA_PATH}/hello.txt`,
  destPath: `${ek.env.USER_DATA_PATH}/hello_copy.txt`
})