Get path of executable

前端 未结 23 1566
清歌不尽
清歌不尽 2020-11-22 07:04

I know this question has been asked before but I still haven\'t seen a satisfactory answer, or a definitive \"no, this cannot be done\", so I\'ll ask again!

All I wa

23条回答
  •  情话喂你
    2020-11-22 07:41

    As of C++17:

    Make sure you include std filesystem.

    #include 
    

    and now you can do this.

    std::filesystem::current_path().string()
    

    boost filesystem became part of the standard lib.

    if you can't find it try to look under:

    std::experimental::filesystem
    

提交回复
热议问题