But the problem that i've found is that MakeBAT creates batch files with one line for each file of each directory and i only need one line for directory. Thanks.
don't know about makebat plugin but you can create plain batch script that does that and connect it with TC via %L option. You will get list of selected directories in temporary file. AFter that you only need to prepend xxcopy to the list and your destination and parameters.
for /F "tokens=*" %%i in (%1) do xxcopy "%%i" "d:" [your parameters]
Name this file backup.bat and call it from start menu with %L option as an parameter
As you can see, makebat plugin can be simulated with this one simple command. You can even create gui with user command instead of hardcoding xxcopy command by using my guibox utility:
If you do not mind using a button to create a Batch and launch it, you can use TCBL. If you want to save the batch, you have the edit option.
The TCBL command could be :