#include <3ds.h>
#include <string>
Go to the source code of this file.
|
| namespace | xs |
| |
| namespace | xs::fs |
| | Filesystem-related utilities.
|
| |
|
| void | xs::fs::AppendFile (const std::string &path, const std::string &data) |
| | Appends data to a file (creates the file if it doesn't exist).
|
| |
| std::string | xs::fs::ReadFile (const std::string &path) |
| | Reads the entire contents of a file into a string.
|
| |
| void | xs::fs::WriteFile (const std::string &path, const std::string &data) |
| | Writes data to a file, overwriting any existing contents.
|
| |