diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-06-26 20:55:28 -0400 |
---|---|---|
committer | Charles Lombardo <clombardo169@gmail.com> | 2023-06-26 22:24:18 -0400 |
commit | 9074a70b0180057d0cebcd667ad7fc813f1aca8c (patch) | |
tree | cdec0c48f4a2f93f23ff1b9d961a5a18a3a3f6ae | |
parent | 2ed8b3cbb9000d2f1f83c79483df0661455767d2 (diff) |
android: Fix size check for content uris
Fix for checking file size for android content uris
-rw-r--r-- | src/common/fs/fs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/fs/fs.cpp b/src/common/fs/fs.cpp index 1baf6d7464..36e67c145c 100644 --- a/src/common/fs/fs.cpp +++ b/src/common/fs/fs.cpp @@ -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); |