Sorting
Cyberdrop-DL has a file sorter built in, but you have to enable it to use it.
You can use the shared path flags below in any part of the sorting schemas. You can also use essentially none of them and have a hard coded path. However, filename
and ext
must always be used.
Shared path flags:
sort_dir
: The same path assort_folder
base_dir
: the name of highest level folder insidescan_folder
ex: (model name / thread name)
parent_dir
: the name of the folder where the file is. Ex: (album name)
filename
: the file's name (stem)
ext
: the file extension (suffix)
scan_folder
scan_folder
Path
or null
null
Sets the starting point for the file scan
Each direct child of the scan_folder
is recursively scanned, and files are moved based on your settings
If this is set to null
(the default), download_dir
is used instead
sort_downloads
sort_downloads
bool
false
Setting this to true
will allow Cyberdrop-DL to sort downloads after a run is complete.
sort_folder
sort_folder
Path
Downloads/Cyberdrop-DL Sorted Downloads
This is the path to the folder you'd like sorted downloads to be stored in.
Setting sort_folder
to the same value as scan_folder
is not officiality supported and will lead to undefined results
sort_incrementer_format
sort_incrementer_format
NonEmptyStr
({i})
When naming collisions happen, Cyberdrop-DL will rename files automatically
image.jpg
->image (1).jpg
.
You can modify the format as needed, but it must include {i}
to specify where the auto-increment value should be placed
sorted_audio
sorted_audio
NonEmptyStr
or null
{sort_dir}/{base_dir}/Audio/{filename}{ext}
This is the format for the directory structure and naming scheme for audio files. Set to null
skip sorting audio files
Unique Path Flags:
bitrate
: file bit rate
duration
: audio runtime
length
: same asduration
sample_rate
: audio sample rate
sorted_image
sorted_image
NonEmptyStr
or null
{sort_dir}/{base_dir}/Images/{filename}{ext}
This is the format for the directory structure and naming scheme for image files. Set to null
skip sorting image files
Unique Path Flags:
height
: vertical pixel count
width
: horizontal pixel count
resolution
:width
xheight
ex. 1080x1920
sorted_video
sorted_video
NonEmptyStr
or null
{sort_dir}/{base_dir}/Video/{filename}{ext}
This is the format for the directory structure and naming scheme for video files. Set to null
skip sorting video files
Unique Path Flags:
codec
: ex. h264
duration
: video runtime
fps
: ex. 24
length
: same asduration
height
: vertical pixel count
width
: horizontal pixel count
resolution
:width
xheight
ex. 1080x1920
sorted_other
sorted_other
NonEmptyStr
or null
{sort_dir}/{base_dir}/Other/{filename}{ext}
This is the format for the directory structure and naming scheme for other files. Set to null
skip sorting other files
Group URLs
It is possible to treat a list of URLs as a group, allowing them to be downloaded to a single folder.
To define a group, put a title above the URLs you want to be in the group, using the format: --- <group_name>
or === <group_name>
.
To define the end of a group, insert an group with no name. (---
or ===
)
Here is an example URL file with two groups:
Those downloads would be sorted as follows:
file1.jpg
file2.jpg
file5.jpg
file4.jpg
file3.jpg
file6.jpg
file7.jpg
Last updated