Hi
is there any way we can ask to remove all Clutter files and Empty Folders in the GUI?
otherwise, I never used the CLI
so if can be only done by CLI outside of the AMC, I can try to learn how to use it and use the CLI instead but need some help uhuh
Thanks a lot
[unRAID] [docker] Any way to remove Clutter files with empty folders with GUI
Re: Any way to remove Clutter files with empty folders with GUI
Remove Empty Folders is default behaviour, to make it appear is if FileBot is renaming files and folders when organizing files into a new folder structure. Remove Clutter Files and Folders cannot be enabled.
What is your process?
I'd just process files from X:/Input to X:/Output and then leave it at that. If FileBot ignores the files anyway, then you may as well leave them, and maybe delete the entire X:/Input folder with a single DEL key press once a month. The key is separating input and output file structure, so that one does not interfere with the other, hence no need for cleanup operations.
What is your process?
I'd just process files from X:/Input to X:/Output and then leave it at that. If FileBot ignores the files anyway, then you may as well leave them, and maybe delete the entire X:/Input folder with a single DEL key press once a month. The key is separating input and output file structure, so that one does not interfere with the other, hence no need for cleanup operations.
Please read the FAQ and How to Request Help.
Re: Any way to remove Clutter files with empty folders with GUI
I am using Rename but with /data/input /data/output to keep hardlink :/
Re: Any way to remove Clutter files with empty folders with GUI
I am renaming all my TV Shows from tmdb to tvdb because for a lot of my shows, there not up to date on tmdb...
but since its on the same path, as you said, it don't process the Remove Empty Folder
so I am trying to find a easier and faster way to remove the Clutter file and Folder without any video file in it. Well exactly what your script Remove Clutters and Empty Folder do but manually
but since its on the same path, as you said, it don't process the Remove Empty Folder
so I am trying to find a easier and faster way to remove the Clutter file and Folder without any video file in it. Well exactly what your script Remove Clutters and Empty Folder do but manually
Re: Any way to remove Clutter files with empty folders with GUI
That's fine. Do extra files in /data/input bother you in anyway?
You can always run the cleaner script on a schedule if you must delete files:
viewtopic.php?p=1341#p1341
You can also just keep clutter files and not worry about it. Storage is cheap. If you just want to delete all files in a given folder once in a while, then rm * -rv is the way to go.
You can always run the cleaner script on a schedule if you must delete files:
viewtopic.php?p=1341#p1341
You can also just keep clutter files and not worry about it. Storage is cheap. If you just want to delete all files in a given folder once in a while, then rm * -rv is the way to go.
Please read the FAQ and How to Request Help.
Re: Any way to remove Clutter files with empty folders with GUI
So you mean to say you're processing files from /data/output to /data/output? Why not from /data/output to a new /data/output_tvdb_new folder structure? FileBot processes and moves (better yet, hardlink again, so you can keep both structures) files, and so you only have the processed and moved files in the new structure, clean and simple.
Please read the FAQ and How to Request Help.
Re: Any way to remove Clutter files with empty folders with GUI
Yes exactlySo you mean to say you're processing files from /data/output to /data/output?
Because I want to keep the same folder, otherwise I have a lot of other apps where I will need to change that foldernameWhy not from /data/output to a new /data/output_tvdb_new folder structure? FileBot processes and moves (better yet, hardlink again, so you can keep both structures) files, and so you only have the processed and moved files in the new structure, clean and simple.
Code: Select all
Filebot -script fn:cleaner /data/output
since I am using filebot docker on Unraid
how I am suppose to use it in terminal ssh?
docker exec Filebot -script fn:cleaner /data/output -> is the filepath need to be the docker filepath?? or I need to put the filepath of the UnRaid os? like /mnt/data/output?
or I need to log inside the docker to use the command line?
Re: Any way to remove Clutter files with empty folders with GUI
Why not rename /data/output to /data/output2, then create a new empty /data/output folder, then organize everything new into that folder?
docker/filebot command-line usage works like this:
https://github.com/filebot/filebot-docker#filebot
e.g. filebot usage:
Code: Select all
filebot -script fn:sysinfo
Code: Select all
docker run --rm -it -v "$PWD:/volume1" -v data:/data rednoah/filebot -script fn:sysinfo
Please read the FAQ and How to Request Help.