MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / IsDirectory

Method IsDirectory

ImGuiFileDialog.cpp:600–603  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

598 return res;
599 }
600 bool IsDirectory(const std::string& vFilePathName) override {
601 namespace fs = std::filesystem;
602 return fs::is_directory(stringToPath(vFilePathName));
603 }
604 void GetFileDateAndSize(const std::string& vFilePathName, const IGFD::FileType& vFileType, std::string& voDate, size_t& voSize) override {
605 namespace fs = std::filesystem;
606 fs::path fpath(vFilePathName);

Callers 1

SetCurrentDirMethod · 0.45

Calls 1

stringToPathFunction · 0.85

Tested by

no test coverage detected