12 lines
155 B
C++
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()));
|
|
}
|
|
|
|
}
|