Go to the documentation of this file.
26 #ifndef SOPC_FILESYSTEM_H_
27 #define SOPC_FILESYSTEM_H_
115 #endif // SOPC_FILESYSTEM_H_
struct _SOPC_Array SOPC_Array
Definition: sopc_array.h:31
@ SOPC_FileSystem_Creation_Error_PathPermisionDenied
Definition: sopc_filesystem.h:39
@ SOPC_FileSystem_Creation_Error_PathResolutionIssue
Definition: sopc_filesystem.h:38
SOPC_FileSystem_CreationResult
Definition: sopc_filesystem.h:34
SOPC_FileSystem_GetDirResult SOPC_FileSystem_GetDirFilePaths(const char *directoryPath, SOPC_Array **ppFilePaths)
Request to list all the file paths of a directory with the given path in the file system.
FILE * SOPC_FileSystem_fmemopen(void *buf, size_t size, const char *opentype)
Simulates a file open using an memory buffer rather than an actual file. refer to "fmemopen" linux ma...
@ SOPC_FileSystem_GetDir_Error_UnknownIssue
Definition: sopc_filesystem.h:57
@ SOPC_FileSystem_Creation_Error_PathAlreadyExists
Definition: sopc_filesystem.h:36
@ SOPC_FileSystem_Creation_Error_UnknownIssue
Definition: sopc_filesystem.h:40
SOPC_FileSystem_RemoveResult
Definition: sopc_filesystem.h:44
SOPC_FileSystem_RemoveResult SOPC_FileSystem_rmdir(const char *directoryPath)
Request to delete a directory with the given path in the file system. Only empty directory can be del...
@ SOPC_FileSystem_Creation_Error_PathPrefixInvalid
Definition: sopc_filesystem.h:37
@ SOPC_FileSystem_Remove_Error_PathInvalid
Definition: sopc_filesystem.h:47
@ SOPC_FileSystem_Remove_Error_PathPermisionDenied
Definition: sopc_filesystem.h:48
@ SOPC_FileSystem_GetDir_OK
Definition: sopc_filesystem.h:54
struct SOPC_FileSystem_Dir SOPC_FileSystem_Dir
Definition: sopc_filesystem.h:60
@ SOPC_FileSystem_Remove_OK
Definition: sopc_filesystem.h:45
SOPC_FileSystem_CreationResult SOPC_FileSystem_mkdir(const char *directoryPath)
Request to create a directory with the given path in the file system. Only the last item of the path ...
@ SOPC_FileSystem_GetDir_Error_PathInvalid
Definition: sopc_filesystem.h:56
A generic array implementation.
SOPC_FileSystem_GetDirResult
Definition: sopc_filesystem.h:53
@ SOPC_FileSystem_Remove_Error_UnknownIssue
Definition: sopc_filesystem.h:49
@ SOPC_FileSystem_Remove_Error_PathNotEmpty
Definition: sopc_filesystem.h:46
@ SOPC_FileSystem_GetDir_Error_InvalidParameters
Definition: sopc_filesystem.h:55
@ SOPC_FileSystem_Creation_OK
Definition: sopc_filesystem.h:35