early-access version 1699

This commit is contained in:
pineappleEA
2021-05-20 08:03:35 +02:00
parent a2ba3b7d14
commit c480c93544
3 changed files with 4 additions and 15 deletions

View File

@@ -183,7 +183,6 @@ size_t WriteStringToFile(const std::filesystem::path& path, FileType type,
size_t AppendStringToFile(const std::filesystem::path& path, FileType type,
std::string_view string) {
if (!Exists(path)) {
return WriteStringToFile(path, type, string);
}
@@ -253,13 +252,12 @@ void IOFile::Open(const fs::path& path, FileAccessMode mode, FileType type, File
#ifdef _WIN32
if (flag != FileShareFlag::ShareNone) {
file = _wfsopen(path.wstring().c_str(), AccessModeToWStr(mode, type),
ToWindowsFileShareFlag(flag));
file = _wfsopen(path.c_str(), AccessModeToWStr(mode, type), ToWindowsFileShareFlag(flag));
} else {
_wfopen_s(&file, path.wstring().c_str(), AccessModeToWStr(mode, type));
_wfopen_s(&file, path.c_str(), AccessModeToWStr(mode, type));
}
#else
file = std::fopen(PathToUTF8String(path).c_str(), AccessModeToStr(mode, type));
file = std::fopen(path.c_str(), AccessModeToStr(mode, type));
#endif
if (!IsOpen()) {
@@ -349,8 +347,6 @@ u64 IOFile::GetSize() const {
return 0;
}
errno = 0;
std::error_code ec;
const auto file_size = fs::file_size(file_path, ec);