![]() |
Vault
4.1
|
VPlatformAPI defines the lower level APIs for interfacing directly with the platform's file system API which deal in paths. More...
#include <vtypes_internal.h>
Static Public Member Functions | |
static VString | getcwd () |
static int | open (const VString &path, int flags, mode_t mode) |
static FILE * | fopen (const VString &path, const char *mode) |
static int | mkdir (const VString &path, mode_t mode) |
static int | rmdir (const VString &path) |
static int | unlink (const VString &path) |
static int | rename (const VString &oldName, const VString &newName) |
static int | stat (const VString &path, struct stat *buf) |
VPlatformAPI defines the lower level APIs for interfacing directly with the platform's file system API which deal in paths.
These APIs take UTF-8 formatted VString paths. The implementation is platform-specific:
Definition at line 64 of file vtypes_internal.h.