FileSystemManager.getFileInfo

2020-08-26 16:16 更新

解释:获取本地临时文件的相关信息, 并在 success 回调函数中返回该文件大小。

Web 态说明:受浏览器限制,Web 态不支持文件系统相关功能,调用该方法会执行失败回调函数。

方法参数:Object object

object参数说明:

success 返回参数说明:

示例 

在开发者工具中打开


图片示例


代码示例

<view class="wrap">
    <button type="primary" bindtap="getFileInfo">获取本地临时文件的相关信息</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'
                    });
                    // 此为 “本地临时文件” 路径。
                    this.data.filePath = res.tempFilePath;
                }
            });
        },
        getFileInfo() {
            this.fileSystemManager.getFileInfo({
                filePath: this.data.filePath,
                // filePath: `${swan.env.USER_DATA_PATH}/demo.txt`,// 不存在的文件路径
                success: res => {
                    swan.showModal({
                        title: '文件信息',
                        content: JSON.stringify(res),
                    });
                    console.log('getFileInfo success', res);
                },
                fail: err => {
                    swan.showToast({
                        title: JSON.stringify(err),
                        icon: 'none'
                    });
                    console.log('getFileInfo fail', err);
                }
            });
        }
    });
    




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

    扫描二维码

    下载编程狮App

    公众号
    微信公众号

    编程狮公众号