Extract question
Posted: 07 Oct 2013, 01:06
I want to extract to the root folder that my RAR files are also located. What do I change the output to? I've tried all sorts of stuff and I'm not having any luck!
def extractFiles = extract(file: f, output: new File(f.dir.name), conflict: 'skip', filter: { it.isArchive() || it.isVideo() || it.isSubtitle() || (music && it.isAudio()) }, forceExtractAll: true) ?: []
def extractFiles = extract(file: f, output: new File(f.dir.name), conflict: 'skip', filter: { it.isArchive() || it.isVideo() || it.isSubtitle() || (music && it.isAudio()) }, forceExtractAll: true) ?: []