FileSystemManager.accessSync

2020-08-26 16:16 更新

解釋:判斷文件/目錄是否存在的同步接口。

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

方法參數(shù):String path

path參數(shù)說明:文件/目錄路徑。

若接口調用失敗,會拋出一個標準的Error對象

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <button type="primary"  bindtap="access">判斷文件/目錄是否存在</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;
            }
        });
    },
    accessSync() {
        try {
            let result = this.fileSystemManager.accessSync(
                this.data.filePath
            );
            swan.showToast({
                title: 'accessSync success',
                icon: 'none'
            });
            console.log('accessSync success', result);
        }
        catch (err) {
            swan.showToast({
                title: JSON.stringify(err),
                icon: 'none'
            });
            console.log('accessSync fail', err);
        }
    }
});


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號