FileSystemManager.renameSync收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个同步方法。
重命名文件,可以把文件从 oldPath 移动到 newPath。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 因为开发者只有在 ttfile://user 目录下才有写的权限, 因此 rename 只能在用户目录下进行。 |
注意事项 | 无 |
支持沙盒 | 否 |
相关教程 | 无 |
语法
FileSystemManager.renameSync(oldPath, newPath)
参数说明
oldPath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 是 | 源文件路径,可以是普通文件或目录,必须以 ttfile://user 开头 | 1.15.0 |
newPath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 是 | 新文件路径,必须以 ttfile://user 开头 | 1.15.0 |
返回值
无
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
109101 | permission denied, %s %s | D | 没有权限 请查看path参数是否正确 | 1.15.0 |
109102 | no such file or directory, %s %s -> %s | D | 源文件不存在 请查看path参数是否正确 | 1.15.0 |
109199 | params oldPath is required | D | oldPath是必传值 请查看oldPath参数是否正确 | 1.15.0 |
109199 | params newPath is required | D | newPath是必传值 请查看newPath参数是否正确 | 1.15.0 |
扫 码体验
请使用字节宿主APP扫码
代码示例
// 【示例 1】 将所有保存的文件移除拓展标识: const fileSystemManager = tt.getFileSystemManager() fileSystemManager.getSavedFileList({ success(res) { res.fileList.forEach(removeExt) }, fail(res) { console.log("获取失败", res.errMsg) }, }) /** * @param {*} fileItem * @param {string} fileItem.filePath * @param {number} fileItem.createTime * @param {number} fileItem.size */ function removeExt(fileItem) { console.log(`移除 ${fileItem.filePath} 的 ext`) const newPath = fileItem.filePath.replace(/(\..+)?$/, "") try { fileSystemManager.renameSync(fileItem.filePath, newPath) console.log("重命名成功") } catch (err) { console.log("重命名失败", err) } }
点击纠错