Specify read-only mode
cdflib.setReadOnlyMode(cdfId,
mode
)
cdflib.setReadOnlyMode(cdfId,
specifies the read-only mode of a Common Data Format (CDF) file.mode
)
After you open a CDF file, you can put the file into read-only mode to prevent accidental modification.
|
Identifier of a CDF file, returned by a call to | ||||
|
Mode value, specified as one of these character vectors or string scalars, or its numeric equivalent.
To get the numeric equivalent of these mode values, use |
Open the example CDF file and set the file to read-only mode.
cdfId = cdflib.open('example.cdf'); % Set the file to READONLY mode cdflib.setReadOnlyMode(cdfId,'READONLYon') % Check read-only status of file again. mode = cdflib.getReadOnlyMode(cdfId) mode = READONLYon % Clean up cdflib.close(cdfId) clear cdfId
This function corresponds to the CDF library C API routine CDFsetReadOnlyMode
.
To use this function, you must be familiar with the CDF C
interface. Read the CDF documentation at the CDF website
.
For copyright information, see the cdfcopyright.txt
file.