View Single Post
  #1701  
Old 24.04.2021, 07:20
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,553
Default

Quote:
Originally Posted by ThatGuy View Post
... extract to the download directory you set when you enter URLs to the linkgrabber
Code:
/*
    Move extracted files
    Trigger : Archive extraction finished
*/    

archive.extractedFilePaths.forEach(function(filePath) {
    filePath.moveTo(archive.folder);
    filePath.parent.delete();
})
Reply With Quote