) do @echo %
i 在TestDir目录及所有子目录中找出所有的txt文件for /r TestDir %i in (*.txt) do @echo %
i在TestDir目录及所有子目录中找出所有的txt及jpg文件for /r TestDir %i in (.txt,.jpg) do @echo %
i在TestDir目录及所有子目录中找出所有文件名中包含test的文件for /r TestDir %i in (test) do @echo %i
匿名回答于2019-12-30 00:26:22