MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / is_existing_directory

Function is_existing_directory

src/framework/io/filesystem.cpp:9–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7namespace engine::io {
8
9bool is_existing_directory(const std::filesystem::path & path) {
10 std::error_code ec;
11 return std::filesystem::is_directory(path, ec);
12}
13
14bool is_existing_file(const std::filesystem::path & path) {
15 std::error_code ec;

Callers 15

require_directoryFunction · 0.85
find_first_existingFunction · 0.85
collect_existingFunction · 0.85
validate_requestMethod · 0.85
resolve_model_rootFunction · 0.85
resolve_model_rootFunction · 0.85
resolve_model_rootFunction · 0.85
resolve_model_rootFunction · 0.85
require_directoryFunction · 0.85
optional_directoryFunction · 0.85
resolve_model_rootFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected