FileSystemManager.copyFileSync

解释:用于实现文件拷贝的同步接口。

方法参数:String srcPath, String destPath

srcPath参数说明:文件/目录路径。

destPath参数说明:拷贝操作的目标文件名。

若接口调用失败,会抛出一个标准的Error对象

代码示例

  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. const fs = swan.getFileSystemManager();
  4. this.fs = fs;
  5. },
  6. copyFileSync() {
  7. try {
  8. let result = this.fs.copyFileSync(
  9. `${swan.env.USER_DATA_PATH}/demo.txt`,
  10. `${swan.env.USER_DATA_PATH}/copyFileSync.txt`
  11. );
  12. console.log('copyFileSync success', result);
  13. }
  14. catch (err) {
  15. console.log('copyFileSync fail', err);
  16. }
  17. }
  18. });