首页 > 其他 > 详细

Runtime快游戏调用copyfile接口写临时文件踩坑记录

时间:2020-12-25 09:22:16      阅读:31      评论:0      收藏:0      [点我收藏+]
问题描述:

调用copyfile接口将临时文件写入到缓存报错“no such file or directory”。

问题分析:

如果调用copyfile接口使用的源文件是临时文件,则该接口目前不支持此场景,需要使用save接口先将临时文件保存到本地,然后再调用copyfile接口。

解决方法:

var fileSystemManager = hbs.getFileSystemManager();
fileSystemManager.saveFile({
    tempFilePath: ‘temp file path’,
        filePath: ‘target file path’,
            success : function(res) {
                    console.log("saveFile success res = " + JSON.stringify(res));    
                    },    
                    fail : function(data) {        
                    console.log("saveFile fail " + JSON.stringify(data));    
                    },    
                    complete : function() {        
                    console.log("saveFile complete" );    
                    }}) 
                    fileSystemManager.copyFile({    
                    srcPath : ‘source file’,  //源文件路径,只可以是本地文件    
                    destPath : ‘target path’,    
                    success : function() {        
                    console.log("copy success" );    
                    },    
                    fail : function(data) {        
                    console.log("copy fail " + JSON.stringify(data));    
                    },    
                    complete : function() {        
                    console.log("copy complete" );    
                    }})

原文链接:
https://developer.huawei.com/consumer/cn/forum/topic/0204404942804220219?fid=18
作者:AppGallery Connect

Runtime快游戏调用copyfile接口写临时文件踩坑记录

原文:https://blog.51cto.com/14772288/2571777

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!