FileSystemManager.mkdir

2020-08-26 16:17 更新

解釋:創(chuàng)建目錄。

Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)執(zhí)行失敗回調(diào)函數(shù)。

方法參數(shù):Object object

object參數(shù)說明:

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <button type="primary" bindtap="mkdir">創(chuàng)建目錄</button>
</view>
Page({
    onLoad() {
        this.fileSystemManager = swan.getFileSystemManager();
    },
    mkdir() {
        this.fileSystemManager.mkdir({
            dirPath: `${swan.env.USER_DATA_PATH}/mkDir/newDir`,
            recursive: true,
            success: res => {
                swan.showToast({
                    title: res.errMsg,
                    icon: 'none'
                });
                console.log('mkdir success', res);
            },
            fail: err => {
                swan.showToast({
                    title: JSON.stringify(err),
                    icon: 'none'
                });
                console.log('mkdir fail', err);
            }
        });
    }
});


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)