wx.getSavedFileList({
success: function (res) {
console.log('本地缓存文件列表:', res.fileList);
// 遍历文件列表并处理
res.fileList.forEach(function (file) {
console.log('文件路径:', file.filePath);
console.log('文件大小:', file.size); // 文件大小,单位:B
console.log('创建时间:', new Date(file.createTime));
});
},
fail: function (error) {
console.error('获取文件列表失败', error);
}
});
在这个示例中,wx.getSavedFileList 返回一个包含已保存的文件信息的对象。通过遍历 res.fileList 数组,可以获取每个文件的路径、大小、创建时间等信息。
转载请注明出处:http://www.zyzy.cn/article/detail/915/微信小程序