The value of 'filename' is invalid. It must satisfy the function: exist.
Mostra commenti meno recenti
The value of 'filename' is invalid. It must satisfy the function: exist. getting this error while executing test case
3 Commenti
Luca Ferro
il 6 Mar 2023
could you share the code filename and possibly the code?
Bharathi
il 6 Mar 2023
chrisw23
il 7 Mar 2023
..try this
myFilePath = "...SL_B007_27_DmeSensorSelection.xxx";
fInfo = System.IO.FileInfo(myFilePath);
if fInfo.Exists
...
end
Risposte (1)
Swaraj
il 5 Apr 2023
2 voti
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.
Categorie
Scopri di più su Results, Reporting, and Test File Management in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!