How do can i provide a fs object with the location of a folder?
for instance i want to be able to do this.
const folder = await fs.givePath("~/Desktop/images");
const file = await folder.createFile(“rendition.jpg”, { overwrite: true });
im using fs.getFolder(); but i dont want the user to pick a folder. i want to script the location so that my script can save it automatically.
any information would be useful… im having a hard time reading the documentation and making sense of it