Answered
How to use Folder.userData properly
Hi all,
I'm trying to understand how to properly write a few lines of code involving Folder.userData.
When I declare a folder path which of the following is correct?
var myFolderPath = Folder.userData + encordeURI("/MyFolder");var myFolderPath = Folder.userData.absoluteURI + encordeURI("/MyFolder");var myFolderPath = Folder.userData.relativeURI + encodeURI("/MyFolder");
They all seem to work. Which is the best choice though?
Then, I'll continue with the following:
var myFolder = new Folder(myFolderPath);
