Initial Android Support

This commit is contained in:
ItzVladik
2026-04-05 16:49:56 +00:00
parent 1ea1801271
commit fa6861b221
38 changed files with 337 additions and 21 deletions

View File

@@ -205,7 +205,10 @@ bool File::mkdirs() const {
return false;
}
return fs::create_directories(path, error);
// Previous behavior could return false even if the directory did not exist
// and was successfully created, at least this happens on Android
fs::create_directories(path, error);
return !error;
}
/*