mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 03:27:12 +01:00
12 lines
250 B
C++
12 lines
250 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;
|
|
}}
|