View Single Post
  #358  
Old 02.03.2018, 10:52
dxzdxz1 dxzdxz1 is offline
Super Loader
 
Join Date: Nov 2017
Posts: 26
Default

I'm trying to create a script that does the follow actions:


On a batch download, after each download and extraction finishes I would like to run this command:

compact.exe /c /exe:lzx *

for every new downloaded file

I have tried to do with this

Code:
var compact = "compact.exe";
var file = "archive(getExtractedFilePaths).getExtension()"; {
    callAsync(function() {}, compact, "/c", "/exe:lzx", file);
}
But is not working

Where the script is wrong and how can I fix it?
Reply With Quote