0

So I want to create lots of different folders (lots!) which will have the following format:

RobocopyVAR          -  where VAR will be a letter, or number etc.

Just for learning purposes, how could I create a basic batch file to automate creating folders:

RobocopyA       through to           RobocopyZ

Cheers!

4

1 に答える 1

1

これをバッチファイルに入れます:

for %%L in (A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) DO (md Robocopy%%L)
于 2013-03-07T00:21:03.910 に答える