diff options
| -rw-r--r-- | zencore/filesystem.cpp | 9 | ||||
| -rw-r--r-- | zencore/include/zencore/filesystem.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index c4c4a6ff0..7b123eb4e 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -610,4 +610,13 @@ PathFromHandle(void* NativeHandle) return FullPath; } +std::filesystem::path +GetRunningExecutablePath() +{ + TCHAR ExePath[MAX_PATH]; + DWORD PathLength = GetModuleFileName(NULL, ExePath, ZEN_ARRAY_COUNT(ExePath)); + + return {std::wstring_view(ExePath, PathLength)}; +} + } // namespace zen diff --git a/zencore/include/zencore/filesystem.h b/zencore/include/zencore/filesystem.h index ba8588c5c..d8140932b 100644 --- a/zencore/include/zencore/filesystem.h +++ b/zencore/include/zencore/filesystem.h @@ -33,6 +33,8 @@ ZENCORE_API bool CleanDirectory(const std::filesystem::path& dir); */ ZENCORE_API std::filesystem::path PathFromHandle(void* NativeHandle); +ZENCORE_API std::filesystem::path GetRunningExecutablePath(); + struct FileContents { std::vector<IoBuffer> Data; |