|
|
@@ -56,6 +56,18 @@ void ApkFilesystem::close(File* file)
|
|
|
CE_DELETE(default_allocator(), file);
|
|
|
}
|
|
|
|
|
|
+//-----------------------------------------------------------------------------
|
|
|
+bool ApkFilesystem::is_directory(const char* path)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+//-----------------------------------------------------------------------------
|
|
|
+bool ApkFilesystem::is_file(const char* path)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
//-----------------------------------------------------------------------------
|
|
|
void ApkFilesystem::create_directory(const char* /*path*/)
|
|
|
{
|