==
I've done a small utility for TC and other file lister the %L option used in the button bar.
this tool get a list of file form a file, build and launch a bat file accordind to some options and parameters.
for more :http://tccfestuff.free.fr/
=====
in French :
J'ai fait un petit programme qui peut être utilisé en conjontion avec TC... C'est un programme qui utilise "Fichier selectionnés" %L et construit un batch à partir de cette liste. C'est très pratique pour les boutons....
Si cette utilitaire vous semble util, le voici.....http://tccfestuff.free.fr/
l'aide n'est pour l'instant qu'en Anglais si c'est utile, je rajouterai des explication en francais.
Small tool for TC : TC Batch Builder & Launcher
Moderators: Hacker, petermad, Stefan2, white
in fact, insde TC for a button it should bu used as follow :
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%n.disabled
this command allow to "remane selected files adding .disable at the end with the dos ren command"
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%z
this command remove the latest extension of a file
Command : [path to]\tcbbl.exe
parameters : -q %L @echo %%n in %%f $Ac:\myselected files.txt
this command list all selected file into c:\myselected files.txt
% sign is already used by TC, you have to protect the "%" by a "%".
For the seg fault, i will check
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%n.disabled
this command allow to "remane selected files adding .disable at the end with the dos ren command"
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%z
this command remove the latest extension of a file
Command : [path to]\tcbbl.exe
parameters : -q %L @echo %%n in %%f $Ac:\myselected files.txt
this command list all selected file into c:\myselected files.txt
% sign is already used by TC, you have to protect the "%" by a "%".
For the seg fault, i will check
Please tell me how can I use BAT BUILDER to copy a lot of files from different path into another path. The list of files are stored in a file.nsp wrote:in fact, insde TC for a button it should bu used as follow :
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%n.disabled
this command allow to "remane selected files adding .disable at the end with the dos ren command"
Command : [path to]\tcbbl.exe
parameters : -q %L ren %%f %%z
this command remove the latest extension of a file
Command : [path to]\tcbbl.exe
parameters : -q %L @echo %%n in %%f $Ac:\myselected files.txt
this command list all selected file into c:\myselected files.txt
% sign is already used by TC, you have to protect the "%" by a "%".
For the seg fault, i will check
To be more explicit, I want to copy all files from list, stored with whole path into file c:\mylisfiles, to d:\anotherpath .
My Best Wishes,
Eugen
Eugen
Use latest version, from New Version
%syntax changed to $syntax since 2006.
To use simple stuff (no super_wdx) you can only use the update program.
if anotherpath do not exist;
if you want to use extension filter, you need to use tcbl.ini to copy all images, all archives, all music, all video in separated folder......
and call tcbl like :
Hope this help !
%syntax changed to $syntax since 2006.
To use simple stuff (no super_wdx) you can only use the update program.
if you want to copy all files "without path" it is as simple as :eugensyl wrote: 8< ----- snip snip --------------------
To be more explicit, I want to copy all files from list, stored with whole path into file c:\mylisfiles, to d:\anotherpath .
Code: Select all
tcbl c:\mylistFiles copy $f "d:\anotherpath"
Code: Select all
tcbl c:\mylistFiles md "d:\anotherpath" $( copy $f "d:\anotherpath"
if you want to use extension filter, you need to use tcbl.ini to copy all images, all archives, all music, all video in separated folder......
Code: Select all
------in TCBL.INI
[eugensyl_copy]
pre=md "$1"
pre=md "$1\img"
pre=md "$1\Arc"
......
cmd=<jpg|png|gif|tiff|bmp|svg|psd|xcf>copy $f "$1\img"
cmd=<rar|zip|7z|gz|tar|cab|sqx>copy $f "$1\arch"
.........
Code: Select all
tcbl -i c:\mylistFiles eugensyl_copy "d:\anotherpath"