|
SLIOStream * | SLFileStorage::open (std::string path, SLIOStreamKind kind, SLIOStreamMode mode) |
| Opens a file stream for I/O operations. More...
|
|
void | SLFileStorage::close (SLIOStream *stream) |
| Closes and deletes a stream. More...
|
|
bool | SLFileStorage::exists (std::string path, SLIOStreamKind kind) |
| Checks whether a given file exists. More...
|
|
SLIOBuffer | SLFileStorage::readIntoBuffer (std::string path, SLIOStreamKind kind) |
| Reads an entire file into memory. More...
|
|
void | SLFileStorage::deleteBuffer (SLIOBuffer &buffer) |
| Deallocates the data of a buffer returned by SLFileStorage::readIntoBuffer. More...
|
|
std::string | SLFileStorage::readIntoString (std::string path, SLIOStreamKind kind) |
| Reads an entire file into a string. More...
|
|
void | SLFileStorage::writeString (std::string path, SLIOStreamKind kind, const std::string &string) |
| Writes a string to a file. More...
|
|