Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Utilities.hpp
1#ifndef _UTILITIES_H
2#define _UTILITIES_H
3
4#include <string>
5
6bool CopyFileTo(std::string path, std::string to);
7bool CreateFolder(const char * path);
8std::string SwapExtension(std::string path, std::string ext);
9std::string sanitizeFileName(std::string name);
10void switchSlashes(std::string &path);
11std::string extractFilename(std::string path);
12std::string extractFilenameAndExtension(std::string path);
13
14#endif