Bulk File Filter is a script for file filtering by name.
Bulk File Filter requires Node.js to run.
If this requirement is met, run npm install in the root directory.
-
You must put the search keywords in
targets.txt, each search phrase on its own line.Example:
foo bar bazwill find files with names like
FoO-bAr.jpg,_BAR_baz.pngandBar0_Baz.gif, but will not match names likebar.bmp. -
Put the files to be filtered inside the directory named
source_files. -
Run the following command in the root directory:
node index.js [option] [option] ...
-prefix=String, default "". Tells the program to filter only files that start with this string. Alias:pre,p.-suffix=String, default "". Tells the program to filter only files that end with this string, good for.extsituations. Alias:suf,s.-log=Bool, default false. Whether or not the process will log individual matches in the console. Alias:l.-warn=Number, default 20. Matches below this target:filename percentage will be marked yellow when logged to the console to indicate they may require some attention. Alias:w.
After running the script, the files that matched the target keywords will be copied into the directory named output_files.
Notice that this program does not clear the output_files directory before rerunning the program,
however it will warn you if you attempt to run the program while files still exist in the directory.
This means you must manually delete the files in the directory before running the program again,
or may want to run a different command to add other files to the output before finishing.
Information on the latest process' unmatched (disparate) targets is logged in disparate_targets.log after every search (this file is overwritten every time).