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
1212
1313#include < string>
1414
15+ // C++17 will allow us to use std::filesystem::path::remove_all
1516void delete_directory (const std::string &path);
1617
18+ // C++17 will allow us to use std::filesystem::current_path
1719std::string get_current_working_directory ();
1820
21+ // C++17 will allow us to use std::filesystem::path(dir).append(file)
1922std::string concat_dir_file (const std::string &directory,
2023 const std::string &file_name);
2124
22- // C++17 will allow us to use std::filesystem::is_directory()
25+ // C++17 will allow us to use std::filesystem::is_directory
2326bool is_directory (const std::string &path);
2427
2528#endif // CPROVER_UTIL_FILE_UTIL_H
You can’t perform that action at this time.
0 commit comments