|
bool | ImGuiFs::PathExists (const char *path) |
|
void | ImGuiFs::PathGetAbsolute (const char *path, char *rv) |
|
void | ImGuiFs::PathGetDirectoryName (const char *filePath, char *rv) |
|
void | ImGuiFs::PathGetFileName (const char *filePath, char *rv) |
|
void | ImGuiFs::PathGetFileNameWithoutExtension (const char *filePath, char *rv) |
|
void | ImGuiFs::PathGetExtension (const char *filePath, char *rv) |
|
void | ImGuiFs::PathChangeExtension (const char *filePath, const char *newExtension, char *rv) |
|
void | ImGuiFs::PathAppend (const char *directory, char *rv) |
|
void | ImGuiFs::PathSplit (const char *path, FilenameStringVector &rv, bool leaveIntermediateTrailingSlashes) |
|
bool | ImGuiFs::DirectoryExists (const char *path) |
|
void | ImGuiFs::DirectoryCreate (const char *directoryName) |
|
void | ImGuiFs::DirectoryGetDirectories (const char *directoryName, PathStringVector &result, FilenameStringVector *pOptionalNamesOut, Sorting sorting) |
|
void | ImGuiFs::DirectoryGetFiles (const char *directoryName, PathStringVector &result, FilenameStringVector *pOptionalNamesOut, Sorting sorting) |
|
bool | ImGuiFs::FileExists (const char *path) |
|
bool | ImGuiFs::FileGetContent (const char *path, ImVector< unsigned char > &bufferOut, bool openInTextMode, const char *password) |
|
bool | ImGuiFs::FileGetContent (const char *path, ImVector< char > &bufferOut, bool openInTextMode, const char *password) |
|
int | ImGuiFs::FileGetExtensionType (const char *path) |
|
void | ImGuiFs::FileGetExtensionTypesFromFilenames (ImVector< int > &fileExtensionTypesOut, const FilenameStringVector &fileNames) |
|