标签: c++ boost
我想提取当前二进制文件的名称并在我的程序中使用它。我能以某种方式这样做吗?
#include <iostream> int main(int argc, char** argv) { std::cout << arv[0]; // print name of program return 0; }
基本上,我想要上面的便携式版本?我很高兴使用任何Boost或标准库工具。