aboutsummaryrefslogtreecommitdiff
path: root/build2/filesystem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/filesystem.cxx')
-rw-r--r--build2/filesystem.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/build2/filesystem.cxx b/build2/filesystem.cxx
index 9d9b3b6..eefaf99 100644
--- a/build2/filesystem.cxx
+++ b/build2/filesystem.cxx
@@ -11,6 +11,22 @@ using namespace butl;
namespace build2
{
+ bool
+ touch (const path& p, bool create, uint16_t v)
+ {
+ if (verb >= v)
+ text << "touch " << p;
+
+ try
+ {
+ return touch_file (p, create);
+ }
+ catch (const system_error& e)
+ {
+ fail << "unable to touch file " << p << ": " << e << endf;
+ }
+ }
+
fs_status<mkdir_status>
mkdir (const dir_path& d, uint16_t v)
{