FileSystemManager.rename

解释:重命名文件,可以把文件从 oldPath 移动到 newPath。

方法参数:Object object

object参数说明

参数名类型必填默认值说明
oldPathString-源文件/源目录路径
newPathString-目标路径
successFunction-接口调用成功的回调函数
failFunction-接口调用失败的回调函数
completeFunction-接口调用结束的回调函数(调用成功、失败都会执行)

代码示例

  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. const fs = swan.getFileSystemManager();
  4. this.fs = fs;
  5. },
  6. rename() {
  7. this.fs.rename({
  8. oldPath: `${swan.env.USER_DATA_PATH}/demo.txt`,
  9. newPath: `${swan.env.USER_DATA_PATH}/rename/demo.txt`,
  10. encoding: 'utf8',
  11. success: res => {
  12. console.log('rename success', res);
  13. },
  14. fail: err => {
  15. console.log('rename fail', err)
  16. }
  17. });
  18. }
  19. });