early-access version 3710

This commit is contained in:
pineappleEA
2023-06-27 19:16:39 +02:00
parent c9635ec98a
commit 23df90e651
30 changed files with 1981 additions and 77 deletions

View File

@@ -605,6 +605,12 @@ fs::file_type GetEntryType(const fs::path& path) {
}
u64 GetSize(const fs::path& path) {
#ifdef ANDROID
if (Android::IsContentUri(path)) {
return Android::GetSize(path);
}
#endif
std::error_code ec;
const auto file_size = fs::file_size(path, ec);