#pragma once #include "expected.h" #include namespace vcpkg {namespace Files { void check_is_directory(const std::tr2::sys::path& dirpath); expected get_contents(const std::tr2::sys::path& file_path) noexcept; std::tr2::sys::path find_file_recursively_up(const std::tr2::sys::path& starting_dir, const std::string& filename); }}