File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,17 @@ Author: Daniel Kroening, kroening@kroening.com
12
12
13
13
#include < string>
14
14
15
+ // C++17 will allow us to use std::filesystem::path::remove_all
15
16
void delete_directory (const std::string &path);
16
17
18
+ // C++17 will allow us to use std::filesystem::current_path
17
19
std::string get_current_working_directory ();
18
20
21
+ // C++17 will allow us to use std::filesystem::path(dir).append(file)
19
22
std::string concat_dir_file (const std::string &directory,
20
23
const std::string &file_name);
21
24
22
- // C++17 will allow us to use std::filesystem::is_directory()
25
+ // C++17 will allow us to use std::filesystem::is_directory
23
26
bool is_directory (const std::string &path);
24
27
25
28
#endif // CPROVER_UTIL_FILE_UTIL_H
You can’t perform that action at this time.
0 commit comments