W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋:刪除目錄的同步接口。
Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)拋出一個(gè)標(biāo)準(zhǔn)的 Error 對(duì)象。
方法參數(shù):String dirPath, Boolean recursive
dirPath
參數(shù)說明:要?jiǎng)h除的目錄路徑。
recursive
參數(shù)說明:是否遞歸刪除目錄。如果為 true,則刪除該目錄和該目錄下的所有子目錄以及文件。
若接口調(diào)用失敗,會(huì)拋出一個(gè)標(biāo)準(zhǔn)的Error
對(duì)象
<view class="wrap">
<button type="primary" bindtap="mkdir">創(chuàng)建rmdir目錄</button>
<button type="primary" bindtap="rmdir">刪除目錄</button>
</view>
Page({
data: {
filePath: ''
},
onLoad() {
this.fileSystemManager = swan.getFileSystemManager();
},
mkdir() {
try {
let result = this.fileSystemManager.mkdirSync(
`${swan.env.USER_DATA_PATH}/mkDir/newDir`,
true,
);
swan.showToast({
title: '創(chuàng)建成功',
icon: 'none'
});
console.log('mkdirSync success', result);
}
catch (err) {
swan.showToast({
title: `${err}`,
icon: 'none'
});
console.log('mkdirSync fail', err);
}
},
rmdirSync() {
try {
let result = this.fileSystemManager.rmdirSync(
`${swan.env.USER_DATA_PATH}/mkDir/newDir`,
);
swan.showToast({
title: 'rmdirSync success',
icon: 'none'
});
console.log('rmdirSync success', result);
}
catch (err) {
swan.showToast({
title: err + '',
icon: 'none'
});
console.log('rmdirSync fail', err);
}
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: