Effacer les filtres
Effacer les filtres

spdfcdfinfo - how to avoid a crash when the cdf file is corrupted?

1 vue (au cours des 30 derniers jours)
Harri
Harri le 17 Jan 2023
I use spdfcdfinfo and spdfcdfread for loading cdf files to matlab. Occasionally the cdf files can be corrupted on a data server and then these two cdf scripts crash whentrying to load data to matlab. Is there any method to check that the cdf file is readable before trying to use spdfcdfinfo and spdfcdfread?

Réponses (1)

Swaraj
Swaraj le 9 Mar 2023
One approach is to use the built-in MATLAB function exist to check if the file exists and is readable.
Another approach is to use the “cdflib” function “cdflib.open” to open the CDF file and check if it is readable.
To avoid the program crashes, always use try-catch blocks. Put the code using which you are checking the file inside the try block and put the corresponding catch block.
Go through the below documentations:
Documentation for exist function.
Documentation for CDF Library.
Documentation for try-catch blocks.

Catégories

En savoir plus sur Scripts dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by