【windows】bat脚本、批处理文件
程序员文章站
2022-04-16 07:57:09
::当前盘符 @echo current pan : %~d0 ::当前路径 @echo current path : %cd%\ ::当前bat文件路径 @echo the bat's path : %~dp0 :: /a表示是个表达式 1M 1024byte 1024 = 1MB set /a ......
::当前盘符
@echo current pan : %~d0
::当前路径
@echo current path : %cd%\
::当前bat文件路径
@echo the bat's path : %~dp0
:: /a表示是个表达式 1m 1024byte * 1024 = 1mb
set /a onem=1024*1024
for /l %%i in (1,1,100) do fsutil file createnew %~dp001_num_%%i_1mb_file.txt %onem%
:: 从1 开始,间隔为1,到100结束,包括100
上一篇: 石子合并2——环状合并DP