Add GetFilename, GetExtension,

This commit is contained in:
Lion Kortlepel
2021-09-20 22:45:12 +02:00
parent 32756ccc4a
commit 27b5c6d850
5 changed files with 110 additions and 2 deletions

View File

@@ -28,6 +28,8 @@ namespace FS {
std::pair<bool, std::string> Remove(const std::string& Path);
std::pair<bool, std::string> Rename(const std::string& Path, const std::string& NewPath);
std::pair<bool, std::string> Copy(const std::string& Path, const std::string& NewPath);
std::string GetFilename(const std::string& Path);
std::string GetExtension(const std::string& Path);
bool Exists(const std::string& Path);
}
}