wx.getFileInfo({
filePath: '本地文件路径', // 请替换为实际的本地文件路径
success: function (res) {
console.log('文件信息:', res);
console.log('文件大小:', res.size); // 文件大小,单位:B
console.log('创建时间:', new Date(res.createTime));
console.log('最后修改时间:', new Date(res.modifyTime));
},
fail: function (error) {
console.error('获取文件信息失败', error);
}
});
在这个示例中,需要将 '本地文件路径' 替换为实际的本地文件路径。成功调用 wx.getFileInfo 后,res 对象中包含了文件的相关信息,例如文件大小、创建时间、最后修改时间等。
请注意,获取文件信息的操作是异步的,因此需要适当处理成功和失败的回调函数。
转载请注明出处:http://www.zyzy.cn/article/detail/918/微信小程序