You can pass command line parameters to any djb path file.
Example: Create a batch file to backup the folder specified in parameter 1 to a new folder that includes the creation date in the name.
Passing parameters:
- JobBuilder.exe -execute backup.djb c:\data databackup1
- %1% will be replaced with c:\data, %2% with databackup1
- %1%\*.* will be translated to c:\data\*.* on execution.
- d:\%2%-%yyyy%-%mmm%-%dd% will be translated to e.g. d:\databackup1-2002-Apr-02 on execution.
To get a full description of date and time tags (%dd% etc...) please refer to this section.