Lua: Add FS.GetParentFolder

This commit is contained in:
Lion Kortlepel
2021-09-20 23:43:54 +02:00
parent 908f67a799
commit 23ffa25d78
3 changed files with 6 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ namespace FS {
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);
std::string GetParentFolder(const std::string& Path);
bool Exists(const std::string& Path);
}
}