This content has been marked as final.
Show 1 reply
-
1. Re: Delete nodes in separate folder from viewed thumbnails
Gonterman1201 May 28, 2014 11:06 AM (in response to Gonterman1201)Ok I have a solution. I used the command line to delete the files for me. You just have to give it the right directory and poof gone. Here is how it goes.
poopPanel.addBtn.onClick = function(){
myPath=app.document.presentationPath;
deleteF="rm -r "+myPath.slice(0,39)+"imaging/*";
app.system(deleteF);
using the directory you are on I delete of some of the directory and add the folder I want to create the new directory. Then give that to command line.

