FileSystemManager.saveFileSync

2020-08-26 16:18 更新

解释:保存临时文件到本地的同步接口。此接口会移动临时文件,因此调用成功后, tempFilePath 将不可用。

Web 态说明:受浏览器限制,Web 态不支持文件系统相关功能,调用该方法会抛出一个标准的 Error 对象。

方法参数:String tempFilePath, String filePath

tempFilePath参数说明:临时存储文件路径。

filePath参数说明:要存储的文件路径。

同步返回参数说明:

若接口调用失败,会抛出一个标准的Error对象

示例 

在开发者工具中打开


图片示例

代码示例

<view class="wrap">
    <button type="primary"  bindtap="saveFile">保存临时文件到本地</button>
</view>
Page({
    data: {
        filePath: ''
    },
    onLoad() {
        this.fileSystemManager = swan.getFileSystemManager();
        swan.downloadFile({
            url: 'https://smartprogram.baidu.com/docs/img/logo.png',
            success: res => {
                swan.showToast({
                    title: `文件预下载完成,临时路径为${res.tempFilePath}`,
                    icon: 'none'
                });
                // 此为 “本地临时文件” 路径。
                console.log(res.tempFilePath);
                this.data.filePath = res.tempFilePath;
            }
        });
    },
    saveFileSync() {
        try {
            let result = this.fileSystemManager.saveFileSync(
                this.data.filePath,
                `${swan.env.USER_DATA_PATH}/a.png`
            );
            swan.showToast({
                title: 'saveFileSync success',
                icon: 'none'
            });
            console.log('saveFileSync success', result);
        }
        catch (err) {
            swan.showToast({
                title: err + '',
                icon: 'none'
            });
            console.log('saveFileSync fail', err);
        }
    }
});


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号