We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e09f5fa + 318922e commit 0bfe213Copy full SHA for 0bfe213
src/util/file_util.h
@@ -12,14 +12,17 @@ Author: Daniel Kroening, [email protected]
12
13
#include <string>
14
15
+// C++17 will allow us to use std::filesystem::path::remove_all
16
void delete_directory(const std::string &path);
17
18
+// C++17 will allow us to use std::filesystem::current_path
19
std::string get_current_working_directory();
20
21
+// C++17 will allow us to use std::filesystem::path(dir).append(file)
22
std::string concat_dir_file(const std::string &directory,
23
const std::string &file_name);
24
-// C++17 will allow us to use std::filesystem::is_directory()
25
+// C++17 will allow us to use std::filesystem::is_directory
26
bool is_directory(const std::string &path);
27
28
#endif // CPROVER_UTIL_FILE_UTIL_H
0 commit comments