Updated utilities
This commit is contained in:
Родитель
00b3d0d03d
Коммит
2adf351825
|
@ -300,12 +300,12 @@ namespace util
|
|||
return szFullPath;
|
||||
}
|
||||
|
||||
BOOL DirectoryExists(LPCTSTR szPath)
|
||||
BOOL DirectoryExists(const std::wstring& szPath)
|
||||
{
|
||||
if (_taccess_s(szPath, 0) == 0)
|
||||
if (_taccess_s(szPath.c_str(), 0) == 0)
|
||||
{
|
||||
struct _stat status;
|
||||
_tstat(szPath, &status);
|
||||
_tstat(szPath.c_str(), &status);
|
||||
return (status.st_mode & S_IFDIR) != 0;
|
||||
}
|
||||
return FALSE;
|
||||
|
|
|
@ -51,7 +51,7 @@ namespace util
|
|||
|
||||
std::wstring GetFullPathName(const std::wstring& szFilePath);
|
||||
|
||||
BOOL DirectoryExists(LPCTSTR szPath);
|
||||
BOOL DirectoryExists(const std::wstring& szPath);
|
||||
|
||||
bool MakeFullPath(const std::wstring& szTargetPath);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче