blob: 8fa76c2584f5aa16adfa2f9aa49ea197c38be012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// file : build/filesystem -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_FILESYSTEM
#define BUILD_FILESYSTEM
#include <sys/types.h> // mode_t
#include <build/path>
namespace build
{
// Note that you should probably use the default mode 0777 and let
// the umask mechanism adjust it to the user's preferences. Errors
// are reported by throwing std::system_error.
//
void
mkdir (const path&, mode_t = 0777);
// Try to remove the directory returning not_exist if it does not
// exist and not_empty if it is not empty. All other errors are
// reported by throwing std::system_error.
//
enum class rmdir_status {success, not_exist, not_empty};
rmdir_status
try_rmdir (const path&);
// Try to remove the file (or symbolic link) returning not_exist if
// it does not exist. All other errors are reported by throwing
// std::system_error.
//
enum class rmfile_status {success, not_exist};
rmfile_status
try_rmfile (const path&);
}
#endif // BUILD_FILESYSTEM
|