W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
解釋:獲取文件 Stats 對象。
Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關功能,調用該方法會執(zhí)行失敗回調函數(shù)。
方法參數(shù):Object object
object
參數(shù)說明:
success 返回參數(shù)說明:
stats 返回值說明
<view class="wrap">
<button type="primary" bindtap="stat">獲取文件 Stats 對象</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;
}
});
},
stat() {
this.fileSystemManager.stat({
path: this.data.filePath,
// path: `${swan.env.USER_DATA_PATH}/demo.txt`,// 本地文件路徑
success: res => {
swan.showModal({
title: 'stat',
content: JSON.stringify(res)
});
console.log('stat success', res);
},
fail: err => {
swan.showToast({
title: JSON.stringify(err),
icon: 'none'
});
console.log('stat fail', err);
}
});
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: