Highlight single or multiple folders, a button to copy specific files

What I want to do is highlight a single or multiple folders then use a button to copy just specific files from the folder e.g. .jpg .mkv .srt .idx .sub .mp4 .avi
If I use Copy FILTER *.(jpg|mkv|srt|idx|sub|mp4|avi) it copies the folder and the correct files but is there any way to stop it copying the folder.
if I use

Go FROMSEL
Select "*.mkv"
Select "*-F.jpg"
Select "*.mp4"
Select "*.avi"
Select "*.srt"
Select "*.idx"
Select "*.sub"
Copy
Go Back

It does not go back till after the copy has finished and it only works on one folder at a time.

If you only want the matching files directly below the selected folders:

Copy "{filepath}\*.(jpg|mkv|srt|idx|sub|mp4|avi)"

Thanks that works perfectly.

1 Like