2012-02-26 17:02:54 +00:00
|
|
|
// filebot -script "http://filebot.sf.net/scripts/cpmv.groovy" -trust-script <folder>
|
2012-02-23 08:45:41 +00:00
|
|
|
|
|
|
|
// copy files
|
|
|
|
def temp = args*.copyTo("E:/filebot-temp")
|
|
|
|
|
|
|
|
// sort copies into the given file structure
|
|
|
|
temp.eachMediaFolder {
|
2012-02-23 09:02:16 +00:00
|
|
|
rename(folder:it, format:'E:/TV Shows/{n}/{n} - {s00e00} - {t}', db:'thetvdb', strict:false)
|
2012-02-23 08:45:41 +00:00
|
|
|
}
|