Question File Sorter?

indecentexposureiswrong

Bitter & Jaded
Apr 8, 2022
460
20,366
1,390
0fya082315al84db03fa9bf467e3.png
Anyone have a free autofile sorter that will go through a directory, create folders and autosort a directory. My downloads directory is horribly over full and desperately needs to be sorted, but it will take me days.
 
  • LUL
Reactions: POKI

NaughtyWare

Fan
Mar 13, 2022
9
94
325
0fya082315al84db03fa9bf467e3.png
That depends entirely on how you want to sort them. More Details. If you just want to sort by file type, date downloded, etc., you can do that pretty easily in almost any regular file explorer. But if you want some magical AI that will automatically recognize girls in pictures and videos and sort them for you, then that's a different question.
 

indecentexposureiswrong

Bitter & Jaded
Apr 8, 2022
460
20,366
1,390
0fya082315al84db03fa9bf467e3.png
I really wanted to sort them by keyword in filename... have a bunch of pics that are named with different variations of a name/word and would like to sort them into specific folders.
 

NaughtyWare

Fan
Mar 13, 2022
9
94
325
0fya082315al84db03fa9bf467e3.png
if all you are looking for is a keyword in a file name then the simplest solution for you would be to use the search function in File Explorer.

try using *[keyword]* as a search term in windows explorer after navigating to the folder you want to search

examples:
*ass*
*2022*
*3024x4032*
*ashleytervort*

those searches will pull up any file with that string of characters anywhere in the name or file properties. You can then use ctrl+a to select all of them and then ctrl+x or ctrl+c to move or copy them to a new folder
 

fang

Tier 3 Sub
Mar 11, 2022
30
308
542
0fya082315al84db03fa9bf467e3.png
You can do it with the windows cmd:

Go to a folder of your choice, click on the top bar in your explorer window (where your path is displayed), type in cmd and press enter.
This will open a cmd window in your current folder.

Now simply create a folder (for e.g. "examplegirl") and move all files starting with her name into it like this:

Code:
Please, Log in or Register to view codes content!

This also works for a word in the middle of it:

Code:
Please, Log in or Register to view codes content!

This lets you sort your collection easily if you have your files named after the person in it.

If you have linux the command "move" needs to be changed to "mv" instead.
 

neolith

egirl shill
Mar 11, 2022
597
37,722
1,793
0fya082315al84db03fa9bf467e3.png
also, here's a python script ive made to sort a dir. use it for what you will.
can be used by running python sort_files.py path/to/sort or just by running the script and following the prompt.

Python:
Please, Log in or Register to view codes content!