vcpkg/toolsrc/include/vcpkg_Files.h
2016-09-21 21:43:59 -07:00

14 lines
371 B
C++

#pragma once
#include "expected.h"
#include <filesystem>
namespace vcpkg {namespace Files
{
void check_is_directory(const std::tr2::sys::path& dirpath);
expected<std::string> 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);
}}