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.
我在 .log 文件中有一些信息。有什么方法可以读取 C 语言中的 .log 文件并将其转换为 .txt 文件?我可以使用任何包含文件或 API 吗?
大多数情况下,日志文件只是一个格式化的文本文件,因此无需转换。
只需使用rename()stdio.h 中的函数即可。这里有一个参考:http ://www.cplusplus.com/reference/cstdio/rename/ 。
rename()