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.
我正在使用 Eclipse IDE 开发 c 程序。通过终端,我可以使用文件文件名查看文件信息。但我只需要通过相同的代码打印二进制文件的版本号。我认为 eclipse IDE 保留了构建和调试版本。如何从二进制中检索二进制版本号文件?
谢谢 。
“文件”实用程序是一个重要的实现,即,没有直接的系统调用来获取所有这些信息。你有两个选择:
popen()
file <filename> | cut -d"," -f3
希望这可以帮助。