bat脚本实现遍历文件夹下所有jar文件名

@echo off
Setlocal Enabledelayedexpansion
(for /r %%i in (*.jar) do (
echo.%%i ))>>"jar.txt"

猜你喜欢

转载自blog.csdn.net/fzy629442466/article/details/84784950