Returns the directory path (including terminating separator) of the current executable as derived from argv[0].
| 6803 | // Returns the directory path (including terminating separator) of the current |
| 6804 | // executable as derived from argv[0]. |
| 6805 | static std::string GetCurrentExecutableDirectory() { |
| 6806 | internal::FilePath argv_0(internal::GetArgvs()[0]); |
| 6807 | return argv_0.RemoveFileName().string(); |
| 6808 | } |
| 6809 | #endif |
| 6810 | |
| 6811 | std::string SrcDir() { |
no test coverage detected