diff --git a/User-Menu-Cookbook.md b/User-Menu-Cookbook.md index 2fa12ee..7957354 100644 --- a/User-Menu-Cookbook.md +++ b/User-Menu-Cookbook.md @@ -47,11 +47,9 @@ module.exports = { const mp3Dir = `${dirPath}mp3`; const mp3Names = names.filter(isMp3); - // create mp3 directory - await IO.createDirectory(mp3Dir); - - // move *.mp3 files to mp3 directory + await IO.createDirectory(mp3Dir); await IO.move(dirPath, mp3Dir, mp3Names); + await CloudCmd.refresh(); }, }