How to make my user input as a variable to make a folder
问题 (c)ToTheMaker I found this code here and I'm going to use it but the only problems is I want it to have a user input that will create the folders For example: "Enter number of folders:" The value which the user will input will be used as a variable that will create the folders. How am I going to do that? @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION SET groupsize=10 SET n=1 SET nf=0 FOR %%f IN (*.txt) DO ( IF !n!==1 ( SET /A nf+=1 MD Cake_!nf! ) MOVE /Y "%%f" Cake_!nf! IF !n!==!groupsize! ( SET n