Create a BAT file containing these 3 lines:
@echo off
set /p FileName="Enter File Name: "
echo.>"%~1\%FileName%"
Then:
- Drag and drop the folder in which you want the new file to be created onto the BAT file.
- Enter the file name where prompted in the command window.
- Press Enter.