#include "Leadwerks.h"using namespace Leadwerks;int main(int argc, const char *argv[]){ std::string path = "MyFile.txt"; path = FileSystem::RealPath(path); //Remove the directory System::Print(FileSystem::StripDir(path)); return 0;}