Quote:
Originally Posted by Stream Recorder
Could you please explain how it works? Specifically:
1. Where do the variables %%b, %%c, %%d, %%e, %%f come from?
2. What is "tokens=1-6 delims=/:."?
|
token 1-6 specifies that we want to divide the input string ("%date%.%time%") in maximum 6 parts starting from %a. delims specifies the delimiters that will be used to break the string.
PS: when using outside the batch file use single % eg: %a instead of %%a