How to make directories with current data name in Total Commander
To quickly create directories with the name equal to the current date through the Total Commander:
- At first, let’s create a cmd script that makes a directory with the desired name:
1 2 |
set dir_name=%date:~6,4%.%date:~3,2%.%date:~0,2% md "%1%dir_name%" |
In the first line of the script, the desired name for the directory is created in the format YYYY.MM.DD.
The second script line creates a directory with the specified name along the path passed in the input parameter %1
How to make directories with current data name in Total CommanderRead More »