Skip to content
fabiantheblind edited this page Mar 5, 2014 · 3 revisions

Select a folder and get the path from it. (or something else)

    var myFolder = Folder.selectDialog ("Select a folder");
      if(myFolder != null){
        if(myFolder instanceof Folder){// <-- This is not really needed
        alert("path: " + myFolder.path);
        alert("fsName: " + myFolder.fsName);
        alert("fullName: " + myFolder.fullName);
        alert("name: " + myFolder.name);
        }
    }
Clone this wiki locally