From 2b30e7880eafcc8cd471c85a973ddf5edb8553f8 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sun, 9 Apr 2017 13:37:12 +0200 Subject: [PATCH] gsdx: add GSmkdir for windows based on CreateDirectory v2: use nullptr --- plugins/GSdx/GSUtil.cpp | 22 ++++++++++++---------- plugins/GSdx/GSUtil.h | 2 -- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/plugins/GSdx/GSUtil.cpp b/plugins/GSdx/GSUtil.cpp index 409b167fea..81f43c47ad 100644 --- a/plugins/GSdx/GSUtil.cpp +++ b/plugins/GSdx/GSUtil.cpp @@ -297,18 +297,13 @@ void GSUtil::GetDeviceDescs(list& dl) GetTempPath(MAX_PATH, buff); desc.tmppath = string(buff) + "/" + desc.name; - WIN32_FIND_DATA FindFileData; - HANDLE hFind = FindFirstFile(desc.tmppath.c_str(), &FindFileData); - if(hFind != INVALID_HANDLE_VALUE) FindClose(hFind); - else CreateDirectory(desc.tmppath.c_str(), NULL); + GSmkdir(desc.tmppath.c_str()); sprintf(buff, "/%d", OCL_PROGRAM_VERSION); desc.tmppath += buff; delete[] buff; - hFind = FindFirstFile(desc.tmppath.c_str(), &FindFileData); - if(hFind != INVALID_HANDLE_VALUE) FindClose(hFind); - else CreateDirectory(desc.tmppath.c_str(), NULL); + GSmkdir(desc.tmppath.c_str()); #else // TODO: linux ASSERT(0); @@ -442,16 +437,23 @@ GSRendererType GSUtil::GetBestRenderer() return GSRendererType::DX9_HW; } -#else +#endif void GSmkdir(const char* dir) { +#ifdef _WIN32 + if (!CreateDirectory(dir, nullptr)) { + DWORD errorID = ::GetLastError(); + if (errorID != ERROR_ALREADY_EXISTS) { + fprintf(stderr, "Failed to create directory: %s error %u\n", dir, errorID); + } + } +#else int err = mkdir(dir, 0777); if (!err && errno != EEXIST) fprintf(stderr, "Failed to create directory: %s\n", dir); -} - #endif +} const char* psm_str(int psm) { diff --git a/plugins/GSdx/GSUtil.h b/plugins/GSdx/GSUtil.h index 81b469c1c0..69d56af049 100644 --- a/plugins/GSdx/GSUtil.h +++ b/plugins/GSdx/GSUtil.h @@ -68,9 +68,7 @@ public: #endif }; -#if defined(__unix__) void GSmkdir(const char* dir); -#endif const char* psm_str(int psm);