FileSystemManager.saveFileSync收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个同步方法。
保存临时文件到用户目录, 用户目录以 ttfile://user 开头。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 |
|
相关教程 | 无 |
语法
FileSystemManager.saveFileSync(tempFilePath, filePath)
参数说明
tempFilePath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 是 | 要保存的临时文件地址,临时文件地址必须以 ttfile://temp 开头。 | 1.15.0 |
filePath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 否 | 要保存的目标地址,如果没有填写将自动生成一个。 | 1.15.0 |
返回值
类型 | 说明 | 最低支持版本 |
---|---|---|
string | 保存后的文件地址 | 1.15.0 |
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
999999 | invalid param | D | 参数错误 | 1.15.0 |
999991 | error stack | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
113401 | permission denied, $apiName $dirPath | D | 1.15.0 | |
113402 | no such file or directory, $apiName $dirPath | D | 1.15.0 | |
113403 | operation not permitted, $apiName $filePath | D | 1.15.0 | |
113404 | user dir saved file size limit exceeded | D | 1.15.0 | |
999999 | params $paramName is required | D | 1.15.0 | |
999999 | params $paramName type is not $paramType type | D | 1.15.0 | |
999999 | $paramName is invalid | D | 1.15.0 | |
999991 | operation failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
999993 | internal error | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
代码示例
const fileSystemManager = tt.getFileSystemManager(); tt.chooseImage({ success(res) { // 获取图片, chooseImage 获取的文件在临时文件目录内 const tempFilePaths = res.tempFilePaths; if (tempFilePaths[0]) { // 保存到用户目录 const savedFilePath = fileSystemManager.saveFileSync(tempFilePaths[0]); console.log(`文件已经从 ${tempFilePaths[0]} 移动到 ${savedFilePath}`); } }, });
点击纠错