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 %yourinfo%> c:\temp\temp.txt type c:\temp\logfile.txt >> c:\temp\temp.txt ren c:\temp\temp.txt c:\temp\logfile.txt