mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-28 08:20:19 +08:00
merge pull #2978
This commit is contained in:
parent
5370076dcc
commit
f743a881b2
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user