Why do I have an error saying "Invalid file identifier"?

조회 수: 36 (최근 30일)
Hannah
Hannah . 2021년 8월 18일
답변: the cyclist . 2021년 8월 18일
Hello, I have an error saying:
Error using fprintf
Invalid file identifier. Use fopen to generate
a valid file identifier.
Error in EXP1_Generate_batch_ver1 (line 106)
fprintf(fileID,'Formattyp = 1\n');
this is my code:
myBatchName = '\\\\data-be\\data-ti-2019\\eit\\50_Labore\\T016-Photovoltaik_1\\06_Projekte\\02_Aktiv\\2019_Schenker_Storen\\DOCS_Hannah\\Experiment1\\02_Generate_Batch_File\\Batch.csv';
fileID = fopen(myBatchName,'w');
fprintf(fileID,'Formattyp = 1\n');
fprintf(fileID,'Save = month\n');
fprintf(fileID,'name ; longitude ; latitude ; altitude ; hor ; azimuth ; inclination \n'); %column titles
path='\\\\data-be\\data-ti-2019\\eit\\50_Labore\\T016-Photovoltaik_1\\06_Projekte\\02_Aktiv\\2019_Schenker_Storen\\DOCS_Hannah\\Experiment1\\02_Generate_Batch_File\\';
what am I doing wrong? Thanks :)

답변 (1개)

the cyclist
the cyclist 2021년 8월 18일
I would guess that the value of fileID that is generated is -1, meaning that there was a problem with the fopen function. A likely culprit is that you do not have write permissions.
Take a look at this question/answer for some ideas on how to resolve it.

카테고리

Help CenterFile Exchange에서 Programming Utilities에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by