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.
我试图弄清楚这需要一些帮助。我需要制作一个程序来复制我的日志文件并用日期和时间重命名到不同的目录。在加载程序之前,如果有任何帮助会很好,则不确定该怎么做。
这是一个批处理文件,它将所有日志文件复制到存档文件夹,并为每个文件附加日期:
@Echo Off @For /F "tokens=1,2,3 delims=/ " %%A in ('Date /t') do @( Set Day=%%A Set Month=%%B Set Year=%%C Set All=%%C%%B%%A ) @For %%a in ("*.log") do copy %%a "archive\%%~na_%All%.LOG"