嗨,谁能帮我解决这个问题。
我需要创建多个文件??我举个例子。在某个文件夹中,说文件夹记录。“记录”文件夹包含 1 个名为“example2tought1023.au”的文件。我需要通过增加数字多次生成相同的文件包含。
我应该得到这样的结果 example2tought1023.au example3tought1024.au example4tought1025.au example5tought1026.au
这是我目前拥有的:
SET count=9
SET filename_1=example
SET filename_2=thought
SET extension=.au
SET start_1=2
SET start_2=1023
SET source=%filename_1%%start_1%%filename_2%%start_2%%extension%
FOR /L %%i IN (1, 1, %count%) DO (
REM These two lines do not work!
SET /a n=%start_1%+%%i
SET /a number_2=%start_2% + %%i
SET destination=%filename_1%%number_1%%filename_2%%number_2%%extension%
ECHO %destination%
REM COPY %source% %destination%
)
PAUSE
但FOR /L
循环中的行不起作用