I have a machine with v15 and a machine where a v19 trial was attempted.
Ran into bug immediately - Am running script that collects all images and videos into a single filelist.
I use environment variables for my filemasks....
So:
dir /b %FILEMASK_IMAGE%;%FILEMASK_VIDEO% >filelist.txt
Which evaluates to:
dir /b *.jpg;*.jpeg;*.gif;*.png;*.bmp;*.ico;*.tif;*.tiff;*.pcx;*.art;*.cbr;*.cbz;*.mkv;*.avi;*.mp4;*.flv;*.mov;*.wmv;*.mpg;*.mpeg;*.vob;*.bdmv;*.ts;*.m2ts;*.rm;*.qt;*.asf;*.asx;*.fli;*.swf;*.m4v;*.webm >filelist.txt
.... The output ended up in a weird color (green on white) that is not even in my INI file for directory coloring, so... Where did that come from?
I did some testing. It's not the number of filename wildcard masks that is the limit; it's the total character length. The limit seems to be 172. It did not used to be 172. It really shouldn't be 172. I should be able to go to the command-line length limit, in theory. There's a lot of extensions out there.
Of course I can break this up into sub-commands, but it breaks the abstraction of "%FILEMASK_IMAGE%;%FILEMASK_VIDEO%", as well as the fact that grouping it together prevents having to add a step to sort the output alphabetically.
Ran into bug immediately - Am running script that collects all images and videos into a single filelist.
I use environment variables for my filemasks....
So:
dir /b %FILEMASK_IMAGE%;%FILEMASK_VIDEO% >filelist.txt
Which evaluates to:
dir /b *.jpg;*.jpeg;*.gif;*.png;*.bmp;*.ico;*.tif;*.tiff;*.pcx;*.art;*.cbr;*.cbz;*.mkv;*.avi;*.mp4;*.flv;*.mov;*.wmv;*.mpg;*.mpeg;*.vob;*.bdmv;*.ts;*.m2ts;*.rm;*.qt;*.asf;*.asx;*.fli;*.swf;*.m4v;*.webm >filelist.txt
.... The output ended up in a weird color (green on white) that is not even in my INI file for directory coloring, so... Where did that come from?
I did some testing. It's not the number of filename wildcard masks that is the limit; it's the total character length. The limit seems to be 172. It did not used to be 172. It really shouldn't be 172. I should be able to go to the command-line length limit, in theory. There's a lot of extensions out there.
Of course I can break this up into sub-commands, but it breaks the abstraction of "%FILEMASK_IMAGE%;%FILEMASK_VIDEO%", as well as the fact that grouping it together prevents having to add a step to sort the output alphabetically.