There appear to have been some changes to releases lately although I am not sure what it is.
Sometimes after post processing, I am left with a load of superfluous files with numerical file extensions.
Is there any way to clean these up, as it's not really practical to add all the numbers to the cleanup list!
Does anyone know what the change is and why it has been done?
Cheers!
Changes to releases lately?
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Re: Changes to releases lately?
Posters are using increasingly odd file naming schemes.
It's also possible that the NZB contains duplicate files.
SABnzbd doesn't overwrite files but renames them (like: file.ext file.ext.1 file.ext.2).
It's also possible that the NZB contains duplicate files.
SABnzbd doesn't overwrite files but renames them (like: file.ext file.ext.1 file.ext.2).
Re: Changes to releases lately?
Hmm.. not sure what to do then - at the moment I pick them up because I have to manually move the files across to my NAS - however since you fixed the UNC path issue related to the sorter for the next release I was hoping to automate it.
SABnzbd will move all those files too though unless I can figure a way around it. Is there any way to do the opposite to the cleanup list and say keep only the following file extensions (like a whitelist)
Cheers..
SABnzbd will move all those files too though unless I can figure a way around it. Is there any way to do the opposite to the cleanup list and say keep only the following file extensions (like a whitelist)
Cheers..
Re: Changes to releases lately?
You can add a simple post-processing script.
This should do the trick (on Windows).
It will not prevent a move to the NAS first.
This should do the trick (on Windows).
Code: Select all
@echo off
cd /d "%1"
del *.1 *.2 *.3 *.4 *.5 *.6 *.7 *.8 *.9