Question
Create folder in root directory using extendscript
Hi All,
I am able to create the folder in desktop.
var f = new Folder("~/Desktop/new_fodler");
f.create();
But I couldn't create the folder in /Users/ directory.
var f = new Folder("/Users/new_fodler");
f.create();
Could anyone help me on troubleshooting this. Is this required any permissions with the code?
Thanks.
