Skip to content

Commit

Permalink
Android file system: added IsDirectory function stub
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMostDiligent committed Sep 5, 2023
1 parent 6dc0dc0 commit 62f9d64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions Platforms/Android/interface/AndroidFileSystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ struct AndroidFileSystem : public BasicFileSystem
static bool CreateDirectory(const Char* strPath);
static void ClearDirectory(const Char* strPath);
static void DeleteFile(const Char* strPath);
static bool IsDirectory(const Char* strPath);

static std::vector<std::unique_ptr<FindFileData>> Search(const Char* SearchPattern);

Expand Down
6 changes: 6 additions & 0 deletions Platforms/Android/src/AndroidFileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,12 @@ void AndroidFileSystem::DeleteFile(const Char* strPath)
UNSUPPORTED("Not implemented");
}

bool AndroidFileSystem::IsDirectory(const Char* strPath)
{
UNSUPPORTED("Not implemented");
return false;
}

std::vector<std::unique_ptr<FindFileData>> AndroidFileSystem::Search(const Char* SearchPattern)
{
UNSUPPORTED("Not implemented");
Expand Down

0 comments on commit 62f9d64

Please sign in to comment.