rename fs::stat to fs::get_stat

This commit is contained in:
oltolm 2023-07-18 23:30:36 +02:00 committed by Elad Ashkenazi
parent 73c3d5fc81
commit bc40b61ef1
10 changed files with 17 additions and 17 deletions

View file

@ -186,7 +186,7 @@ namespace fs
}
// Get file information
bool stat(const std::string& path, stat_t& info);
bool get_stat(const std::string& path, stat_t& info);
// Check whether a file or a directory exists (not recommended, use is_file() or is_dir() instead)
bool exists(const std::string& path);