i found a way out. i have no words to express my gratitude towards the developers of this software. this soft is so nice. for the information of concerned i would like to quote the format string.
action>convert>tag-filename.
format string:$num(+2%_counter%,)-%title%
now you get filenames as:-
21-mysong.mp3
22-hissong.mp3
23-hersong.mp3
if you want to get filenames starting from 101-
format string:$num(+10%_counter%,)-%title%
and thus you can have your files renamed with any digits of your wish using this format string.
anyway thanks for dano who has responded so quickly.have a nice day.
Sorry but your strings are bad examples which nobody should imitate.
$num(+2%_counter%,)-%title%
Why is there a+ sign? It has no use. And there is no 2nd parameter in the $num function. It seems to be the same as $num(x,1) but you should still write the 2nd value.
that if i want two digits before the filename, then the first string if i want three digits before the filename then next string.
i am happy that you have responded so quickly and thanks you Dano. I claim no authority, ia m a novice in this field. i just quoted the string in the hope that somebody may benefit from it.
kinldy help me in finding out solution for the following problem.
with the above string i can get filenames with digits starting from 01.02.03. or 11,12,13 or 21,22,23 or 101,102,103 etc. if i want a group of filenames to get the filenames starting from digits 27 what to do? then if it should start from 167 what to do?what i mean is i should get the above filenames as
27-mysong.mp3
28-hissong.mp3
29-hersong.mp3
your suggestion doesn't give the expected result.it gives only the same number to all the files.
$add(%_counter%,20) gives 21 as leading digits for all the files selected for formatting. in my case all the three examples will have leading digits of 21. i want it to be in the arithmatic progression. that also should start with other digits than 1. example i should expect to get 26 for the first file 27 for the second and 28 for the third.
if i give $add(%_counter%,25)
it will give 251 as leading digits,that also to all the files