View Single Post
  #589  
Old 16.02.2019, 18:30
TheDeath24
Guest
 
Posts: n/a
Default

Hello together,

i want to ask if somebody can help me with a script.

I want to set the download path of a new package wich is over 20gb to filme and all other bigger than 500mb to serien.

As event i used "A new link has been added"

var myLong = myPackagizerLink.getBytesTotal();
var filme = "E:\HD Filme";
var serien = "E:\Serien";


if (myLong > '20000000000') {
myPackagizerLink.setDownloadFolder(filme);
}

No error comes but it does not working.
Can anybody help?

Regards
Reply With Quote