* Get absolute path of currently running binary. * * @return absolute path */
| 48 | * @return absolute path |
| 49 | */ |
| 50 | fs::path getThisBinaryPath() |
| 51 | { |
| 52 | std::size_t dirPathSize = 0; |
| 53 | std::string path = getStringThisBinaryPath(dirPathSize); |
| 54 | |
| 55 | return path; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Get absolute path to directory of currently running binary. |