Every day, you need to create a folder named after the current date in the same directory. You can be lazy and add this function to the right-click menu in WINDOWS.
STEP 1. Create a new .reg file and write the following content:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\Shell\CMD_NAME]
"MUIVerb"="Date Folder"
"Icon"="shell32.dll,3"
"Position"="top"
[HKEY_CLASSES_ROOT\Directory\Background\Shell\CMD_NAME\command]
@=“COMMAND”
Where CMD_NAME is the registry name of the right-click menu and COMMAND can be one of the following, or it can be a .bat batch file or an .exe executable file:
- Create a folder with the current date:
md %date:~0,4%%date:~5,2%%date:~8,2%
- Right-click to open the command prompt CMD. The Server version already provides the option to open PowerShell.
cmd.exe /k cd %l
STEP 2. Double-click to run as administrator.
STEP 3. Restart Explore.exe.
STEP 4. If you want to delete it, you need to go to the registry to delete the corresponding items.
Reference: https://quan.ithome.com/0/164/516.htm