This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/env/file_system.cpp
2016-10-20 09:41:51 +02:00

12 lines
155 B
C++

#include "file_system.hpp"
#include "../std/cstdio.hpp"
namespace fs
{
bool DeleteFile(string const & path)
{
return (0 == remove(path.c_str()));
}
}