mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
12 lines
426 B
Groovy
12 lines
426 B
Groovy
// watch folders and print files that were added/modified (requires Java 7)
|
|
def watchman = args.watch { changes ->
|
|
println "Processing $changes"
|
|
rename(file:changes, format:"/media/storage/files/tv/{n}{'/Season '+s}/{episode}")
|
|
}
|
|
|
|
// process after 10 minutes without any changes to the folder
|
|
watchman.setCommitDelay(10 * 60 * 1000)
|
|
|
|
println "Waiting for events"
|
|
console.readLine() // keep running and watch for changes
|