after renaming the video, move it into a single folder

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
r85w3e9OLsD
Posts: 5
Joined: 31 Dec 2022, 20:48

after renaming the video, move it into a single folder

Post 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!
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

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

Post 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.
:idea: Please read the FAQ and How to Request Help.
Post Reply