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.
如何复制以 .rar 扩展名开头的任何目录中的第一个文件?
这会将当前文件夹中的“找到的第一个 .rar”文件(随机选择,据我所知)复制到 C:\Temp。我认为这是您可以开始使用的模板。
@ECHO OFF CLS FOR %%A in (*.rar) do ( COPY %%A C:\temp GOTO :Exit ) :Exit
首先定义:按日期排序?按名字?