Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图搜索可执行文件并运行相同的文件。我已经尝试了很多事情,但它没有完成。在搜索中,我使用了“dir /b /s xyz.exe”,但没有选择在同一批次中执行它。请帮助我完成它。
这处理空格和长文件名元素。
@echo off for /f %%a in ('dir /s /b "xyz.exe"') do "%%a"
尝试以下操作:
for /f %I in ('dir /s /b xyz.exe') do %I
在批处理文件中,您将需要使用%%I而不是%I.
%%I
%I