Mat_GetFileAccessMode - Man Page
Returns the file access mode of a MATLAB MAT file given a MAT file structure.
Synopsis
#include <matio.h>
enum mat_acc
Mat_GetFileAccessMode
(const mat_t *matfp);
Description
The Mat_GetFileAccessMode
() function returns the file access mode of the MATLAB MAT file given by the MAT file structure.
Return Values
The return value is one of the following:
MAT_ACC_RDONLY
if the file is opened with read-only access or not opened at all.MAT_ACC_RDWR
if the file is opened with read/write access.
See Also
Mat_CreateVer(3), Mat_Open(3), Mat_GetFilename(3), Mat_GetHeader(3)
Referenced By
Mat_GetFilename(3), Mat_GetHeader(3), Mat_GetVersion(3).
November 20, 2023