@gld5000-cli/image-scripts
Version:
A useful collection of image processing scripts
11 lines (9 loc) • 370 B
JavaScript
import { listFileFullPaths } from "../general/fileOperations.mjs";
import { logTimestampArrow } from "@gld5000k/timestamp";
import { suffixFolderName } from "../general/renameFiles.mjs";
logTimestampArrow();
const { fileList } = await listFileFullPaths();
console.log("fileList:", fileList);
for (let i in fileList) {
await suffixFolderName(fileList[i]);
}