Lua: Add various FS functions

This commit is contained in:
Lion Kortlepel
2021-09-21 00:27:09 +02:00
parent 23ffa25d78
commit fe3ccafc1d
3 changed files with 32 additions and 1 deletions

View File

@@ -32,5 +32,8 @@ namespace FS {
std::string GetExtension(const std::string& Path);
std::string GetParentFolder(const std::string& Path);
bool Exists(const std::string& Path);
bool IsDirectory(const std::string& Path);
bool IsFile(const std::string& Path);
std::string ConcatPaths(sol::variadic_args Args);
}
}