FileSystemManager.renameSync

解释:重命名文件的同步接口,可以把文件从 oldPath 移动到 newPath。

方法参数:String oldPath, String newPath

oldPath参数说明:源文件/源目录路径。newPath参数说明:目标路径。

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

代码示例

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