Page 1 of 1

after renaming the video, move it into a single folder

Posted: 04 Jan 2023, 09:24
by r85w3e9OLsD
Hi

I'm using qbittorrent

how do i move the files to a specific folder after renaming it?

I'm using this simple script but i can't search anything about moving the file

Code: Select all

filebot -rename -r \input --file-filter f.video --db file --format "{folder.name}"
also would it be possible if there's a separate moving folder if the files have more than 3 files and 10gb+
then the other will be to a different folder

Thanks!

Re: after renaming the video, move it into a single folder

Posted: 04 Jan 2023, 09:50
by rednoah
:arrow: Please watch the How do I prototype a plain file format for renaming and reorganizing generic files? video tutorial if you are new to Plain File Mode and Format Expressions.


e.g. select video files and move/rename them into /output/<folder name>/<folder name>.<ext>

Code: Select all

filebot -rename -r /input --file-filter f.video --db file --output /output --format "{folder.name}/{folder.name}"

:idea: Your custom format is responsible for the entire file path, and can generate different file paths for different files, e.g. small files to small files folder, and big files to big files folder, e.g. [SNIPPET] Separate 4K Movies and non-4K Movies.