This commit is contained in:
gabime 2024-01-14 13:17:27 +02:00
parent 5370076dcc
commit f743a881b2

View File

@ -105,11 +105,10 @@ int rename(const filename_t &filename1, const filename_t &filename2) noexcept {
// Return true if path exists (file or directory) // Return true if path exists (file or directory)
bool path_exists(const filename_t &filename) noexcept { bool path_exists(const filename_t &filename) noexcept {
#ifdef SPDLOG_WCHAR_FILENAMES #ifdef SPDLOG_WCHAR_FILENAMES
auto attribs = ::GetFileAttributesW(filename.c_str()); return (::_wstat(filename.c_str(), &buffer) == 0);
#else #else
auto attribs = ::GetFileAttributesA(filename.c_str()); return (::_stat(filename.c_str(), &buffer) == 0);
#endif #endif
return attribs != INVALID_FILE_ATTRIBUTES;
} }
#ifdef _MSC_VER #ifdef _MSC_VER