W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
解釋:讀取本地指定路徑下的目錄內(nèi)文件列表的同步接口。
Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會拋出一個標準的 Error 對象。
方法參數(shù):String dirPath
dirPath參數(shù)說明:想要讀取的文件所在的目錄。
同步返回參數(shù)說明:
若接口調(diào)用失敗,會拋出一個標準的Error對象
<view class="wrap">
<button type="primary" bindtap="readdirSync">讀取本地指定路徑下的目錄內(nèi)文件列表</button>
</view>
Page({
onLoad() {
this.fileSystemManager = swan.getFileSystemManager();
},
readdirSync() {
try {
let result = this.fileSystemManager.readdirSync(
`${swan.env.USER_DATA_PATH}/mkDir/newDir`
);
swan.showToast({
title: result,
icon: 'none'
});
// 如需創(chuàng)建文件請使用FileSystemManager.copyFile自行添加
console.log('readdirSync success', result);
}
catch (err) {
swan.showToast({
title: JSON.stringify(err),
icon: 'none'
});
console.log('readdirSync fail', err);
}
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: