FileSystemManager.readdirSync

2020-08-26 16:17 更新

解釋:讀取本地指定路徑下的目錄內(nèi)文件列表的同步接口。

Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會拋出一個標準的 Error 對象。

方法參數(shù):String dirPath

dirPath參數(shù)說明:想要讀取的文件所在的目錄。

同步返回參數(shù)說明:

若接口調(diào)用失敗,會拋出一個標準的Error對象

示例 

在開發(fā)者工具中打開


圖片示例

代碼示例

<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);
        }
    }
});


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號