Files
easy7zip/CPP/7zip/UI/FileManager/ProgramLocation.cpp
Igor Pavlov 051769bbc5 4.53 beta
2016-05-28 00:15:54 +01:00

25 lines
428 B
C++
Executable File

// ProgramLocation.h
#include "StdAfx.h"
#include "ProgramLocation.h"
#include "Windows/FileName.h"
#include "Windows/DLL.h"
using namespace NWindows;
extern HINSTANCE g_hInstance;
bool GetProgramFolderPath(UString &folder)
{
if (!NDLL::MyGetModuleFileName(g_hInstance, folder))
return false;
int pos = folder.ReverseFind(L'\\');
if (pos < 0)
return false;
folder = folder.Left(pos + 1);
return true;
}