From c8ff4e39ba313b7ad6d3daa0d604e5f648a04d71 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 17 Apr 2017 17:44:15 -0700 Subject: Add fs::create_directories() forwarding function --- toolsrc/include/vcpkg_Files.h | 1 + 1 file changed, 1 insertion(+) (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg_Files.h b/toolsrc/include/vcpkg_Files.h index 3fbaad363..e88bca7b6 100644 --- a/toolsrc/include/vcpkg_Files.h +++ b/toolsrc/include/vcpkg_Files.h @@ -24,6 +24,7 @@ namespace vcpkg::Files virtual bool is_regular_file(const fs::path& path) const = 0; virtual bool is_empty(const fs::path& path) const = 0; virtual bool create_directory(const fs::path& path, std::error_code& ec) = 0; + virtual bool create_directories(const fs::path& path, std::error_code& ec) = 0; virtual void copy(const fs::path& oldpath, const fs::path& newpath, fs::copy_options opts) = 0; virtual bool copy_file(const fs::path& oldpath, const fs::path& newpath, fs::copy_options opts, std::error_code& ec) = 0; virtual fs::file_status status(const fs::path& path, std::error_code& ec) const = 0; -- cgit v1.2.3