feature(cloudcmd) IO.cp -> IO.copy

This commit is contained in:
coderaiser 2020-08-14 17:13:27 +03:00
parent 13307f3861
commit 5041930685
9 changed files with 48 additions and 11 deletions

View file

@ -0,0 +1,2 @@
'use strict';
await IO.copy(dirPath, mp3Dir, mp3Names);

View file

@ -0,0 +1,5 @@
await IO.cp({
from: dirPath,
to: mp3Dir,
names: mp3Names,
});