@filesonly not working

Hello ,

I have had dopus for a few version now. Just recently decided to get this to start working for me.

I do animations and as such i have a large number of frames in a dir and want to copy them to my SSD drive to be complied into a video. I have tried the "Copy To" and it works great so of course I started to perfect it. I add a advance line arguments, Select all, which worked swell. the copy to function i hard coded the destination dir, work great, but i cant get the @filesonly modifier to work.
I have tried it in different line and none work, it always copies any dir in the source folder. If i am reading this correctly, the modifier should tell only copy files not folders correct. I tried these different combination, as i couldnt find a syntax to show how these scripts are laid out.

select all
@filesonly
Copy to =l:

@filesonly
select all
copy to =l:

select all
copy to =l:
@filesonly

select all
@filesonly copy to=l:

Select * TYPE=files DESELECTNOMATCH Copy

You could also do it with just the Copy command and a filter that excludes all subdirs, but that isn't as well self-contained since the filter has to be defined separately.

Correction, the DESELECTNOMATCH isn't working there (we'll fix that), but this works:

Select NONE Select * TYPE=files Copy

(Only matters if you want to avoid copying folders which are already selected when you click the button.)

Then i guess my follow up question is why isn't the @filesonly modifier not working.

And thank you the above example worked like a charm.

@filesonly changes which of the already-selected items are passed to the commands. If you explicitly select things within the command, it has no effect on that.