抖音开放平台Logo
开发者文档
控制台

FileSystemManager.renameSync
收藏
我的收藏

基础库 1.15.0 开始支持本方法,这是一个同步方法。

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

前提条件
业务背景
使用限制
注意事项
因为开发者只有在 ttfile://user 目录下才有写的权限, 因此 rename 只能在用户目录下进行。
相关教程

语法

FileSystemManager.renameSync(oldPath, newPath)

参数说明

oldPath

类型默认值必填说明最低支持版本
string
必须以 ttfile://user 开头 源文件路径,可以是普通文件或目录
1.15.0

newPath

类型默认值必填说明最低支持版本
string
string 类型, 必须以 ttfile://user 开头 新文件路径
1.15.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999999invalid paramD
参数错误
1.15.0
999991error stackF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
113101permission denied, $apiName $oldPath -> $newPathD
1.15.0
113102no such file or directory, $apiName $oldPath -> $newPathD
1.15.0
113103operation not permitted, $apiName $filePathD
1.15.0
113104user dir saved file size limit exceededD
1.15.0
999999params $paramName is requiredD
1.15.0
999999params $paramName type is not $paramType typeD
1.15.0
999999$paramName is invalidD
1.15.0
999991operation failedF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0

代码示例

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); } }