The value of 'filename' is invalid. It must satisfy the function: exist.

63 visualizaciones (últimos 30 días)
Bharathi
Bharathi el 6 de Mzo. de 2023
Respondida: Swaraj el 5 de Abr. de 2023
The value of 'filename' is invalid. It must satisfy the function: exist. getting this error while executing test case
  3 comentarios
Bharathi
Bharathi el 6 de Mzo. de 2023
Its a simulink test suit and its file name is "SL_B007_27_DmeSensorSelection"
chrisw23
chrisw23 el 7 de Mzo. de 2023
..try this
myFilePath = "...SL_B007_27_DmeSensorSelection.xxx";
fInfo = System.IO.FileInfo(myFilePath);
if fInfo.Exists
...
end

Iniciar sesión para comentar.

Respuestas (1)

Swaraj
Swaraj el 5 de Abr. de 2023
The error is coming because some test is trying to use a file which does not exist.
You can go through the exist function documentation for more details and check if all files that your test is using are present at the specified paths.
Also, you can check if all the files under use have names as per the standards.

Categorías

Más información sobre Results, Reporting, and Test File Management en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by