doc update for modules (audio will be coming)

This commit is contained in:
minjaesong
2023-01-08 18:12:09 +09:00
parent 132c31bda5
commit 4a4b6be240
11 changed files with 93 additions and 15 deletions

View File

@@ -512,8 +512,8 @@ shell.coreutils = {
let sourceFile = files.open(path.full)
let destFile = files.open(pathd.full)
debugprintln(`[cp] source path: ${path.full}`)
debugprintln(`[cp] dest path: ${pathd.full}`)
debugprintln(`[mv] source path: ${path.full}`)
debugprintln(`[mv] dest path: ${pathd.full}`)
if (sourceFile.isDirectory || !sourceFile.exists) { printerrln(`${args[0].toUpperCase()} failed for '${sourceFile.fullPath}'`); return 1 } // if file is directory or failed to open, IO error code will be returned
if (destFile.isDirectory) { printerrln(`${args[0].toUpperCase()} failed for '${destFile.fullPath}'`); return 1 } // if file is directory or failed to open, IO error code will be returned